Skip to content

Commit

Permalink
Merge pull request #87 from OpenFreeEnergy/fix-exception-string
Browse files Browse the repository at this point in the history
Fix the way exception class names are made strings
  • Loading branch information
dwhswenson committed Oct 31, 2022
2 parents 62619bb + 62b3cb2 commit c63c81c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gufe/protocols/protocolunit.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def execute(self, *,
source_key=self.key,
inputs=inputs,
outputs=dict(),
exception=(str(type(e)), e.args),
exception=(e.__class__.__qualname__, e.args),
traceback=traceback.format_exc()
)

Expand Down

0 comments on commit c63c81c

Please sign in to comment.