# HG changeset patch # User Augie Fackler # Date 1327197993 21600 # Node ID 5e1323a186fdf3a56f051c59a4ca633188fd5de1 # Parent 8a226f0f99aa31a515b94d6f09c6846104be7feb svn verify: progress information 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)