Update from upstream #11

Closed
soksanichenko wants to merge 158 commits from a8_updated into a8
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 19cb013fec - Show all commits

View File

@ -292,7 +292,8 @@ def resolve_git_ref(repourl, ref):
_, output = git_ls_remote(repourl, ref)
except RuntimeError as e:
raise GitUrlResolveError(
"ref does not exist in remote repo %s with the error %s" % (repourl, e)
"ref does not exist in remote repo %s with the error %s %s"
% (repourl, e, e.output)
)
lines = []