mercurial/commands.py
changeset 20404 466707047c8d
parent 20389 9a86b5b8e0d8
child 20470 78f4c2b7052f
equal deleted inserted replaced
20403:47f25736d006 20404:466707047c8d
  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"""