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-10-08 13:52:49 (GMT)
committer Walter Bender <walter@sugarlabs.org>2013-10-08 13:52:49 (GMT)
commitab360f567baf4588fcfb85dfd2f5e92ed22b7765 (patch)
tree8c1985b10813b0f7106c13705ba266545e7e4d67 /plugins/turtle_blocks_extras
parent21476c2c956b9ec7bb6ddea07806050d509e0d57 (diff)
remove debugging statements
Diffstat (limited to 'plugins/turtle_blocks_extras')
-rw-r--r--plugins/turtle_blocks_extras/turtle_blocks_extras.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/turtle_blocks_extras/turtle_blocks_extras.py b/plugins/turtle_blocks_extras/turtle_blocks_extras.py
index ea6cc79..1f910fd 100644
--- a/plugins/turtle_blocks_extras/turtle_blocks_extras.py
+++ b/plugins/turtle_blocks_extras/turtle_blocks_extras.py
@@ -1009,7 +1009,7 @@ Journal objects'))
for tafile in files:
data = data_from_file(tafile)
name = os.path.basename(tafile)[:-3]
- print 'loading macro %s' % (name)
+ # print 'loading macro %s' % (name)
MACROS['user-defined-' + name] = hat_on_top(listify(data))
palette.add_block('user-defined-' + name,
style='basic-style-extended-vertical',
@@ -1576,14 +1576,14 @@ Journal objects'))
for name in block_names:
# Translate label name into block/prim name.
if blkname in block_names[name]: # block label is an array
- print 'found a match', blkname, name, block_names[name]
+ # print 'found a match', blkname, name, block_names[name]
if name in content_blocks or \
(name in block_primitives and
block_primitives[name] == name):
- print '_make_block', blkname, name
+ # print '_make_block', blkname, name
return self._make_block(name, x, y, defaults)
elif blkname in block_names:
- print '_make_block', blkname
+ # print '_make_block', blkname
return self._make_block(blkname, x, y, defaults)
for name in special_names:
# Translate label name into block/prim name.