Skip to content

Commit 1a810c2

Browse files
committed
Merge branch 'master' of github.com:tobami/codespeed
2 parents 4c1802e + cec511a commit 1a810c2

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

codespeed/subversion.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,8 @@ def get_login(realm, username, may_save):
3333
pysvn.opt_revision_kind.number, newrev.commitid
3434
)
3535
)
36-
except pysvn.ClientError:
37-
raise RuntimeError(
38-
"Could not resolve '" + newrev.branch.project.repo_path + "'")
36+
except pysvn.ClientError as e:
37+
raise RuntimeError(e.args)
3938
except ValueError:
4039
raise RuntimeError(
4140
"'%s' is an invalid subversion revision number" % newrev.commitid)

0 commit comments

Comments
 (0)