Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/taexportlogo.py
diff options
context:
space:
mode:
authorMarion <marion.zepf@gmail.com>2013-08-09 21:07:49 (GMT)
committer Marion <marion.zepf@gmail.com>2013-08-09 21:07:49 (GMT)
commite4252715ca37f55b2bd6702a6c2bb5ce55dd3e23 (patch)
tree61b41723b5ac5e74c53d92a8fb3113ccacfc23f3 /TurtleArt/taexportlogo.py
parentdbc9daecdc6894fe62c23a86aaa91a9513742c13 (diff)
introduce a Color type for the pen color in block programs
Diffstat (limited to 'TurtleArt/taexportlogo.py')
-rw-r--r--TurtleArt/taexportlogo.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/TurtleArt/taexportlogo.py b/TurtleArt/taexportlogo.py
index f021f94..4a1ed4f 100644
--- a/TurtleArt/taexportlogo.py
+++ b/TurtleArt/taexportlogo.py
@@ -223,31 +223,31 @@ def _bottomy(tw):
def _red(tw):
- return CONSTANTS['red']
+ return '_' + str(CONSTANTS['red'])
def _orange(tw):
- return CONSTANTS['orange']
+ return '_' + str(CONSTANTS['orange'])
def _yellow(tw):
- return CONSTANTS['yellow']
+ return '_' + str(CONSTANTS['yellow'])
def _green(tw):
- return CONSTANTS['green']
+ return '_' + str(CONSTANTS['green'])
def _cyan(tw):
- return CONSTANTS['cyan']
+ return '_' + str(CONSTANTS['cyan'])
def _blue(tw):
- return CONSTANTS['blue']
+ return '_' + str(CONSTANTS['blue'])
def _purple(tw):
- return CONSTANTS['purple']
+ return '_' + str(CONSTANTS['purple'])
def _white(tw):