# HG changeset patch # User Dan Villiom Podlaski Christiansen # Date 1323817678 -3600 # Node ID 9cc3ed1f474d4d491442d405cbaa758f38a6f766 # Parent f2de043ac924d8661057f712706b5dd0803c4f39 svn verify: mention URL in output Before: verifying 9b763e4870f5 against r72 After: verifying 9b763e4870f5 against http://gclient.googlecode.com/svn/trunk@72 diff --git a/hgsubversion/svncommands.py b/hgsubversion/svncommands.py --- 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