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