We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a12a31 commit 2ca5464Copy full SHA for 2ca5464
src/aiida_pythonjob/parsers/pythonjob.py
@@ -78,5 +78,7 @@ def parse(self, **kwargs):
78
except OSError:
79
return self.exit_codes.ERROR_READING_OUTPUT_FILE
80
except ValueError as exception:
81
- self.logger.error(exception)
+ self.logger.error(
82
+ f"An error occurred when attempting to parse the output of the calculation: ValueError: {exception!s}"
83
+ )
84
return self.exit_codes.ERROR_INVALID_OUTPUT
0 commit comments