Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2012-12-29 16:29:41 (GMT)
committer Walter Bender <walter.bender@gmail.com>2012-12-29 16:29:41 (GMT)
commit048eff67da178741b712940c476088d4841379c1 (patch)
tree2d7465abc33e207490c12bab12c8764b457b2f99 /TurtleArt
parent22b9bdf945d767ce2d0eee5afb8f7a9ba76f569e (diff)
remove log call since log is not imported
Diffstat (limited to 'TurtleArt')
-rw-r--r--TurtleArt/tautils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/TurtleArt/tautils.py b/TurtleArt/tautils.py
index 37d33b5..f587e41 100644
--- a/TurtleArt/tautils.py
+++ b/TurtleArt/tautils.py
@@ -735,7 +735,7 @@ def check_output(command, warning):
try:
output = subprocess.check_output(command)
except subprocess.CalledProcessError:
- log.warning(warning)
+ print(warning)
return None
else:
import commands
@@ -746,7 +746,7 @@ def check_output(command, warning):
cmd += ' '
(status, output) = commands.getstatusoutput(cmd)
if status != 0:
- log.warning(warning)
+ print(warning)
return None
return output