summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--run_strong_full.py4
-rw-r--r--run_strong_rank.py4
-rw-r--r--run_weak.py4
3 files changed, 6 insertions, 6 deletions
diff --git a/run_strong_full.py b/run_strong_full.py
index 5f60698..c65fecd 100644
--- a/run_strong_full.py
+++ b/run_strong_full.py
@@ -104,7 +104,7 @@ def main():
if(len(sys.argv) < 2):
print ("Usage: python run.py application")
print ("Applications available: ")
- for key, value in applications.iteritems():
+ for key, value in applications.items():
print (key )
print ("All")
@@ -112,7 +112,7 @@ def main():
cmd = sys.argv[1]
print ("Application to run is: " + cmd )
if cmd == "All":
- for key, value in applications.iteritems():
+ for key, value in applications.items():
run(key)
os.chdir(rootdir)
else:
diff --git a/run_strong_rank.py b/run_strong_rank.py
index 6763bc7..68f401e 100644
--- a/run_strong_rank.py
+++ b/run_strong_rank.py
@@ -115,7 +115,7 @@ def main():
if(len(sys.argv) < 2):
print ("Usage: python run.py application")
print ("Applications available: ")
- for key, value in applications.iteritems():
+ for key, value in applications.items():
print (key )
print ("All")
@@ -123,7 +123,7 @@ def main():
cmd = sys.argv[1]
print ("Application to run is: " + cmd )
if cmd == "All":
- for key, value in applications.iteritems():
+ for key, value in applications.items():
run(key)
os.chdir(rootdir)
else:
diff --git a/run_weak.py b/run_weak.py
index 919e9d8..a613675 100644
--- a/run_weak.py
+++ b/run_weak.py
@@ -155,7 +155,7 @@ def main():
if(len(sys.argv) < 2):
print ("Usage: python run.py application")
print ("Applications available: ")
- for key, value in applications.iteritems():
+ for key, value in applications.items():
print (key )
print ("All")
@@ -163,7 +163,7 @@ def main():
cmd = sys.argv[1]
print ("Application to run is: " + cmd )
if cmd == "All":
- for key, value in applications.iteritems():
+ for key, value in applications.items():
run(key)
os.chdir(rootdir)
else: