commands: use ctx.getfileset instead of fileset.getfileset
authorAugie Fackler <raf@durin42.com>
Tue, 04 Feb 2014 14:55:04 -0500
changeset 20404 466707047c8d
parent 20403 47f25736d006
child 20405 cb63aa14aaf7
commands: use ctx.getfileset instead of fileset.getfileset
mercurial/commands.py
--- a/mercurial/commands.py	Sun Feb 09 17:31:26 2014 -0600
+++ b/mercurial/commands.py	Tue Feb 04 14:55:04 2014 -0500
@@ -1943,7 +1943,7 @@
         tree = fileset.parse(expr)[0]
         ui.note(tree, "\n")
 
-    for f in fileset.getfileset(ctx, expr):
+    for f in ctx.getfileset(expr):
         ui.write("%s\n" % f)
 
 @command('debugfsinfo', [], _('[PATH]'))