Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/taexportlogo.py
diff options
context:
space:
mode:
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):