diff options
Diffstat (limited to 'run_strong_rank.py')
-rw-r--r-- | run_strong_rank.py | 4 |
1 files changed, 2 insertions, 2 deletions
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: |