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.
2 parents 70ebcc5 + 0bde82d commit 0cefc00Copy full SHA for 0cefc00
easybuild/tools/github.py
@@ -2025,7 +2025,7 @@ def check_github():
2025
ver, req_ver = git.__version__, '1.0'
2026
if LooseVersion(ver) < LooseVersion(req_ver):
2027
check_res = "FAIL (GitPython version %s is too old, should be version %s or newer)" % (ver, req_ver)
2028
- elif "Could not read from remote repository" in push_err.msg:
+ elif "Could not read from remote repository" in str(push_err):
2029
check_res = "FAIL (GitHub SSH key missing? %s)" % push_err
2030
else:
2031
check_res = "FAIL (unexpected exception: %s)" % push_err
0 commit comments