Fix typo introduced in

338593d
This commit is contained in:
James R. Barlow
2018-07-09 21:07:58 -07:00
parent 0d6a2ba554
commit 316709c291
+1 -2
View File
@@ -679,13 +679,12 @@ def traverse_ruffus_exception(exceptions, options, log):
exit_codes = []
for exc in exceptions:
exit_code = do_ruffus_exception(exceptions, options, log)
exit_code = do_ruffus_exception(exc, options, log)
exit_codes.append(exit_code)
return exit_codes[0] # Multiple codes are rare so take the first one
def check_closed_streams(options):
"""Work around Python issue with multiprocessing forking on closed streams