Skip to content

Commit

Permalink
Merge pull request #340 from bsaakash/master
Browse files Browse the repository at this point in the history
abs - fixed error file creation for remote run
  • Loading branch information
fmckenna authored Oct 11, 2024
2 parents b84abd1 + 2355e28 commit b258bec
Show file tree
Hide file tree
Showing 17 changed files with 1,646 additions and 1,334 deletions.
4 changes: 2 additions & 2 deletions modules/Workflow/whale/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,12 +391,12 @@ def run_command(command):
return str(result), returncode

except WorkFlowInputError as e:
print(str(e).replace('\'',''))
print(str(e).replace("'", ''))
print(str(result))
sys.exit(-20)

except:
# if for whatever reason the above failes, move on
# if for whatever reason the above fails, move on
return str(result), 0

return result, returncode
Expand Down
Loading

0 comments on commit b258bec

Please sign in to comment.