# HG changeset patch # User Augie Fackler # Date 2014-02-04 19:55:04 # Node ID 466707047c8d5429e84a0c9c09ca6be7a7963933 # Parent 47f25736d006358ed1beb101dfbd88c426a5017e commands: use ctx.getfileset instead of fileset.getfileset diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -1943,7 +1943,7 @@ def debugfileset(ui, repo, expr, **opts) 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]'))