Mercurial > hgsubversion
changeset 875:9cc3ed1f474d
svn verify: mention URL in output
Before:
verifying 9b763e4870f5 against r72
After:
verifying 9b763e4870f5 against http://gclient.googlecode.com/svn/trunk@72
author | Dan Villiom Podlaski Christiansen <danchr@gmail.com> |
---|---|
date | Wed, 14 Dec 2011 00:07:58 +0100 |
parents | f2de043ac924 |
children | b450448a9033 |
files | hgsubversion/svncommands.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgsubversion/svncommands.py +++ b/hgsubversion/svncommands.py @@ -43,8 +43,9 @@ def verify(ui, repo, args=None, **opts): srev, branch, branchpath = meta.get_source_rev(ctx=ctx) branchpath = branchpath[len(svn.subdir.lstrip('/')):] + branchurl = ('%s/%s' % (url, branchpath)).strip('/') - ui.write('verifying %s against r%i\n' % (ctx, srev)) + ui.write('verifying %s against %s@%i\n' % (ctx, branchurl, srev)) svnfiles = set() result = 0