Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

2.0.20 #240

Merged
merged 1 commit into from
Mar 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion codecov/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def try_to_run(cmd, shell=False, cwd=None):
try:
return check_output(cmd, shell=shell, cwd=cwd)
except Exception as e:
write(' Error running `%s`: %s' % (cmd, e.output or str(e)))
write(' Error running `%s`: %s' % (cmd, e or str(e)))
return None


Expand Down