commit | ce53f4adde5050cb6a8496740bbac7bcdc567dc9 | [log] [tgz] |
---|---|---|
author | Rich Lane <rich.lane@bigswitch.com> | Thu Oct 25 13:44:39 2012 -0700 |
committer | Rich Lane <rich.lane@bigswitch.com> | Thu Oct 25 13:44:39 2012 -0700 |
tree | 159b91a68ed7c80beefe980629e9f490e594bbb8 | |
parent | f57e35997443787750246a0de7349d545a2a4b23 [diff] |
run_switch.py: fix calls to exit()
diff --git a/run_switch.py b/run_switch.py index 200c1aa..d5187b1 100755 --- a/run_switch.py +++ b/run_switch.py
@@ -49,13 +49,13 @@ check_call(["ls", ofd]) except: print "Could not find datapath daemon: " + ofd - os.exit(1) + sys.exit(1) try: check_call(["ls", ofp]) except: print "Could not find protocol daemon: " + ofp - os.exit(1) + sys.exit(1) if not options.no_wait: print "Starting ofprotocol in 2 seconds; ^C to quit"