From 84ee0d0ecb9f8b89b1f11a3ee4bb1a69daa81db3 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sat, 10 Sep 2011 02:09:53 -0300 Subject: [PATCH] fixed inconsistent python compatibility guarding :P --- break-ex10.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/break-ex10.py b/break-ex10.py index bdba748..2f2b2ea 100644 --- a/break-ex10.py +++ b/break-ex10.py @@ -5,6 +5,6 @@ import sys argc = int(sys.argv[1]) if sys.argv[1:] else 23694 command = "valgrind ./ex10 " + " ".join(map(str, range(argc))) -print("command = {}".format(command)) +print("command = {0}".format(command)) os.system(command)