##// END OF EJS Templates
commands: use ctx.getfileset instead of fileset.getfileset
Augie Fackler -
r20404:46670704 default
parent child Browse files
Show More
@@ -1943,7 +1943,7 b' def debugfileset(ui, repo, expr, **opts)'
1943 1943 tree = fileset.parse(expr)[0]
1944 1944 ui.note(tree, "\n")
1945 1945
1946 for f in fileset.getfileset(ctx, expr):
1946 for f in ctx.getfileset(expr):
1947 1947 ui.write("%s\n" % f)
1948 1948
1949 1949 @command('debugfsinfo', [], _('[PATH]'))
General Comments 0
You need to be logged in to leave comments. Login now