Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/TurtleArt/tautils.py
diff options
context:
space:
mode:
Diffstat (limited to 'TurtleArt/tautils.py')
-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