Mercurial > hgsubversion
changeset 857:cfee8d1eff88
Merge
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Wed, 18 Apr 2012 16:20:59 -0500 |
parents | 2a034bd52d14 (current diff) 5e1323a186fd (diff) |
children | bb6a013abaed |
files | hgsubversion/svncommands.py |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgsubversion/svncommands.py +++ b/hgsubversion/svncommands.py @@ -49,7 +49,9 @@ def verify(ui, repo, args=None, **opts): svnfiles = set() result = 0 - for fn, type in svn.list_files(branchpath, srev): + svndata = svn.list_files(branchpath, srev) + for i, (fn, type) in enumerate(svndata): + util.progress(ui, 'verify', i) if type != 'f': continue svnfiles.add(fn)