Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/taexportpython.py
diff options
context:
space:
mode:
Diffstat (limited to 'TurtleArt/taexportpython.py')
-rw-r--r--TurtleArt/taexportpython.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/TurtleArt/taexportpython.py b/TurtleArt/taexportpython.py
index 8be59bf..0816d9f 100644
--- a/TurtleArt/taexportpython.py
+++ b/TurtleArt/taexportpython.py
@@ -128,7 +128,7 @@ def _walk_action_stack(top_block, lc):
# value blocks don't have a primitive
if block.is_value_block():
- raw_value = block.get_value()
+ raw_value = block.get_value(add_type_prefix=False)
value_ast = value_to_ast(raw_value)
if value_ast is not None:
return [value_ast]