changeset 20404:466707047c8d

commands: use ctx.getfileset instead of fileset.getfileset
author Augie Fackler <raf@durin42.com>
date Tue, 04 Feb 2014 14:55:04 -0500
parents 47f25736d006
children cb63aa14aaf7
files mercurial/commands.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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]'))