Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-12-09 15:10:31 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-12-09 15:10:31 (GMT)
commitb36806eb4f295dd44ab7c28059d477ee39937134 (patch)
tree4f89ee117bf539b7347b405ba37abb8a5184205a /TurtleArt
parent225f0ff32174c2093546824ced0ea9a80f912f6c (diff)
fixed problem with base64 format
Diffstat (limited to 'TurtleArt')
-rw-r--r--TurtleArt/taexporthtml.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/TurtleArt/taexporthtml.py b/TurtleArt/taexporthtml.py
index 75da112..0e6a2f1 100644
--- a/TurtleArt/taexporthtml.py
+++ b/TurtleArt/taexporthtml.py
@@ -69,8 +69,8 @@ def save_html(self, tw, embed_flag=True):
HTML_GLUE['img'] = ('<img width="400" height="300" alt=' + \
'"Image" src="data:image/png;base64,\n',
'"/>\n')
- HTML_GLUE['img2'] = ('<img alt="Image" src="data:image/png;"' + \
- '"base64,\n"', '"/>\n')
+ HTML_GLUE['img2'] = ('<img alt="Image" src="data:image/png;' + \
+ 'base64,\n', '"/>\n')
"""
If there are saved_pictures, put them into a .html; otherwise,