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