Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/tawindow.py
diff options
context:
space:
mode:
authorWalter Bender <walter@sugarlabs.org>2013-05-22 17:05:16 (GMT)
committer Walter Bender <walter@sugarlabs.org>2013-05-22 17:05:16 (GMT)
commited2c58373f40e3a5b5f8266385c017977a0fa325 (patch)
treeb1fd10b306a71dad4f7d0dd66124e9b29f66c032 /TurtleArt/tawindow.py
parent2bbbd45a57d858c6d2eaf9d6cca89678def9d526 (diff)
pyflakes cleanup
Diffstat (limited to 'TurtleArt/tawindow.py')
-rw-r--r--TurtleArt/tawindow.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/TurtleArt/tawindow.py b/TurtleArt/tawindow.py
index 479ae19..b2b27bb 100644
--- a/TurtleArt/tawindow.py
+++ b/TurtleArt/tawindow.py
@@ -48,8 +48,6 @@ DEGTOR = 2 * pi / 360
import locale
-import logging
-
from taconstants import (HORIZONTAL_PALETTE, VERTICAL_PALETTE, BLOCK_SCALE,
MEDIA_SHAPES, STATUS_SHAPES, OVERLAY_SHAPES,
TOOLBAR_SHAPES, TAB_LAYER, RETURN, OVERLAY_LAYER,
@@ -1660,8 +1658,8 @@ before making changes to your Turtle Blocks program'))
try:
os.remove(macro_path)
except Exception, e:
- error_debug('Could not remove macro %s: %s' %
- (macro_path, e))
+ error_output('Could not remove macro %s: %s' %
+ (macro_path, e))
return
i = palette_names.index('myblocks')
palette_blocks[i].remove(blk.name)