Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pysamples/load_block.py
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 /pysamples/load_block.py
parenta341ffce3c3024f90c26159b4e253a2869b0b5d6 (diff)
fix error introduced in pep8 cleanup
Diffstat (limited to 'pysamples/load_block.py')
-rw-r--r--pysamples/load_block.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysamples/load_block.py b/pysamples/load_block.py
index 26dc0b2..a4f680d 100644
--- a/pysamples/load_block.py
+++ b/pysamples/load_block.py
@@ -71,7 +71,7 @@ def myblock(tw, blkname):
# Place the block at the active turtle (x, y) and move the turtle
# into position to place the next block in the stack.
x, y = tw.active_turtle.get_xy()
- if isinstance(blkname) == list:
+ if isinstance(blkname, list):
name = blkname[0]
value = blkname[1:]
dy = int(find_block(tw, name, x, y, value))