Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/plugins/turtle_blocks_extras
diff options
context:
space:
mode:
authorWalter Bender <walter@sugarlabs.org>2013-05-22 22:21:48 (GMT)
committer Walter Bender <walter@sugarlabs.org>2013-05-22 22:21:48 (GMT)
commitf4feb5a9326978f490ccea2f5a324bb6e03cd71d (patch)
treed0c14a47937a90080e8a0fa5ba6b8f2b92198d0c /plugins/turtle_blocks_extras
parenta341ffce3c3024f90c26159b4e253a2869b0b5d6 (diff)
fix error introduced in pep8 cleanup
Diffstat (limited to 'plugins/turtle_blocks_extras')
-rw-r--r--plugins/turtle_blocks_extras/turtle_blocks_extras.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/turtle_blocks_extras/turtle_blocks_extras.py b/plugins/turtle_blocks_extras/turtle_blocks_extras.py
index c2d0a8c..36d98e2 100644
--- a/plugins/turtle_blocks_extras/turtle_blocks_extras.py
+++ b/plugins/turtle_blocks_extras/turtle_blocks_extras.py
@@ -1581,7 +1581,7 @@ bullets'))
# into position to place the next block in the stack.
# TODO: Add expandable argument
x, y = self.tw.active_turtle.get_xy()
- if isinstance(blkname) == list:
+ if isinstance(blkname, list):
name = blkname[0]
if len(blkname) > 1:
value = blkname[1:]