mercurial/commands.py
changeset 14673 b0566467c492
parent 14671 35c2cc322ba8
child 14708 8083f4d00bd1
--- a/mercurial/commands.py	Sat Jun 18 16:52:51 2011 -0500
+++ b/mercurial/commands.py	Sat Jun 18 16:52:51 2011 -0500
@@ -1610,9 +1610,8 @@
     if ui.verbose:
         tree = fileset.parse(expr)[0]
         ui.note(tree, "\n")
-    matcher = lambda x: scmutil.match(repo[None], x, default='glob')
-
-    for f in fileset.getfileset(repo[None], matcher, expr):
+
+    for f in fileset.getfileset(repo[None], expr):
         ui.write("%s\n" % f)
 
 @command('debugfsinfo', [], _('[PATH]'))