Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/taexportpython.py
diff options
context:
space:
mode:
authorMarion <marion.zepf@gmail.com>2013-08-11 21:56:47 (GMT)
committer Marion <marion.zepf@gmail.com>2013-08-11 21:56:47 (GMT)
commit8913f29678d54cc3cbf6cbcb612712c805dd9f35 (patch)
tree6503356f3cc0e8241a235c2988749ef19e72268b /TurtleArt/taexportpython.py
parent7ab3e228be2762ec9fe594931f8448e1d8b16344 (diff)
avoid adding a type prefix to the value of value blocks when exporting them
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]