Skip to content

Commit

Permalink
Fixes #16
Browse files Browse the repository at this point in the history
  • Loading branch information
klbostee committed Apr 16, 2009
1 parent c368f56 commit bd803a8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dumbo/core.py
Expand Up @@ -440,7 +440,9 @@ def main(runner, starter=None):
if errormsg:
print >> sys.stderr, errormsg
sys.exit(1)
program.start()
retval = program.start()
if retval != 0:
sys.exit(retval)
else:
job = Job()
errormsg = runner(job)
Expand Down

0 comments on commit bd803a8

Please sign in to comment.