# HG changeset patch # User Augie Fackler # Date 1334784059 18000 # Node ID cfee8d1eff8878961f6700aa02c5a717eb6d32d2 # Parent 2a034bd52d1449cd5a90e766a994dd56e1f866bd# Parent 5e1323a186fdf3a56f051c59a4ca633188fd5de1 Merge diff --git a/hgsubversion/svncommands.py b/hgsubversion/svncommands.py --- 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)