Skip to content

Commit

Permalink
Merge pull request #790 from aurianer/fix_issue_#789
Browse files Browse the repository at this point in the history
[bugfix] Fix filename order in build error message
  • Loading branch information
Vasileios Karakasis committed May 19, 2019
2 parents 166cf73 + a942ac8 commit 315b7ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reframe/core/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def __init__(self, stdout, stderr):
super().__init__()
self._message = (
"standard error can be found in `%s', "
"standard output can be found in `%s'" % (stdout, stderr)
"standard output can be found in `%s'" % (stderr, stdout)
)


Expand Down

0 comments on commit 315b7ec

Please sign in to comment.