Remove debug print from locate code.
authorBryan O'Sullivan <bos@serpentine.com>
Tue, 05 Jul 2005 18:22:28 -0800
changeset 630 a58af3932cee
parent 629 2fdf3b1659b9
child 631 a287f6cd9c6b
Remove debug print from locate code. # HG changeset patch # User Bryan O'Sullivan <bos@serpentine.com> # Node ID 5240abb57899b745f2e6465be29d9d54c4777364 # Parent 13b74665cbdf735a91f231956d0fe73e446340ea Remove debug print from locate code. Index: hg/mercurial/commands.py ===================================================================
mercurial/commands.py
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -646,7 +646,6 @@ def locate(ui, repo, *pats, **opts):
             '|'.join([fnmatch.translate(os.path.normpath(os.path.normcase(p)))[:-1]
                       for p in pats]),
             tail)
-        print regexp
         return re.compile(regexp)
     exclude = compile(opts['exclude'], on_empty = False)
     include = compile(opts['include'])