equal
deleted
inserted
replaced
1941 ctx = scmutil.revsingle(repo, opts.get('rev'), None) |
1941 ctx = scmutil.revsingle(repo, opts.get('rev'), None) |
1942 if ui.verbose: |
1942 if ui.verbose: |
1943 tree = fileset.parse(expr)[0] |
1943 tree = fileset.parse(expr)[0] |
1944 ui.note(tree, "\n") |
1944 ui.note(tree, "\n") |
1945 |
1945 |
1946 for f in fileset.getfileset(ctx, expr): |
1946 for f in ctx.getfileset(expr): |
1947 ui.write("%s\n" % f) |
1947 ui.write("%s\n" % f) |
1948 |
1948 |
1949 @command('debugfsinfo', [], _('[PATH]')) |
1949 @command('debugfsinfo', [], _('[PATH]')) |
1950 def debugfsinfo(ui, path="."): |
1950 def debugfsinfo(ui, path="."): |
1951 """show information detected about current filesystem""" |
1951 """show information detected about current filesystem""" |