Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/talogo.py
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-02-19 16:55:06 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-02-19 16:55:06 (GMT)
commitb96178d14ec56aa866f35e7aab56a57f108ea75e (patch)
treef404c0cc27b8606caeff68117656ea60efb4fd48 /TurtleArt/talogo.py
parent0486b88297bedd4c47bed3967236f222215a3990 (diff)
pep8 cleanup
Diffstat (limited to 'TurtleArt/talogo.py')
-rw-r--r--TurtleArt/talogo.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/TurtleArt/talogo.py b/TurtleArt/talogo.py
index c367358..a4bb04d 100644
--- a/TurtleArt/talogo.py
+++ b/TurtleArt/talogo.py
@@ -1315,7 +1315,9 @@ class LogoCode:
pixbuf = get_pixbuf_from_journal(self.dsobject, w, h)
except:
_logger.debug("Couldn't open dsobject %s" % (self.dsobject))
- if pixbuf is None and self.filepath is not None and self.filepath != '':
+ if pixbuf is None and \
+ self.filepath is not None and \
+ self.filepath != '':
try:
pixbuf = gtk.gdk.pixbuf_new_from_file_at_size(self.filepath,
w, h)