fixed bad exit arg for exit on exception

This commit is contained in:
Thomas Maddox
2013-05-23 10:05:28 -05:00
parent e09a889f42
commit 050179b01e

View File

@@ -136,7 +136,7 @@ def continue_running():
def exit_or_sleep(exit=False):
if exit_on_exception:
sys.exit(1q)
sys.exit(1)
else:
time.sleep(5)