Skip to content

Commit

Permalink
Fix error dialog on submission failure. (#628)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcipriano committed Mar 9, 2020
1 parent 39a071c commit 48785ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cuesubmit/cuesubmit/ui/Submit.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ def submit(self):
try:
jobs = Submission.submitJob(jobData)
except opencue.exception.CueException as e:
message = "Failed to submit job!\n" + e.message
message = "Failed to submit job!\n" + str(e)
Widgets.CueMessageBox(message, title="Failed Job Submission", parent=self).show()
raise e

Expand Down

0 comments on commit 48785ea

Please sign in to comment.