# HG changeset patch # User Bryan O'Sullivan # Date 1124989914 25200 # Node ID 402279974aeaec2b27eeba187f832eea961b9f02 # Parent 2fd15d743b3be74b63d756ddfa51407f025fe011 Use ui.write instead of print in debugwalk. diff -r 2fd15d743b3b -r 402279974aea mercurial/commands.py --- a/mercurial/commands.py Thu Aug 25 02:00:03 2005 -0700 +++ b/mercurial/commands.py Thu Aug 25 10:11:54 2005 -0700 @@ -716,12 +716,12 @@ def debugwalk(ui, repo, *pats, **opts): items = list(walk(repo, pats, opts)) if not items: return - fmt = '%%s %%-%ds %%-%ds %%s' % ( + fmt = '%%s %%-%ds %%-%ds %%s\n' % ( max([len(abs) for (src, abs, rel, exact) in items]), max([len(rel) for (src, abs, rel, exact) in items])) exactly = {True: 'exact', False: ''} for src, abs, rel, exact in items: - print fmt % (src, abs, rel, exactly[exact]) + ui.write(fmt % (src, abs, rel, exactly[exact])) def diff(ui, repo, *pats, **opts): """diff working directory (or selected files)""" @@ -806,6 +806,7 @@ return fcache[fn] def matchlines(body): + # massively inefficient. rewrite. for match in regexp.finditer(body): start, end = match.span() lnum = body.count('\n', 0, start) + 1