fixed inconsistent python compatibility guarding :P

This commit is contained in:
Dan Buch 2011-09-10 02:09:53 -03:00
parent 7cb0c4aab5
commit 84ee0d0ecb

View File

@ -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)