From 048eff67da178741b712940c476088d4841379c1 Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Sat, 29 Dec 2012 16:29:41 +0000 Subject: remove log call since log is not imported --- (limited to 'TurtleArt') 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 -- cgit v0.9.1