# HG changeset patch # User Benoit Boissinot # Date 1141766838 -3600 # Node ID 5c374776a8bcec77441f8ba205eb44cc22326961 # Parent 05f6c0d1bad8d7393158e8ff477c6a324eace485# Parent 94498a262d15e59d5d23b440bbc9ad21282237fe merge with crew diff -r 05f6c0d1bad8 -r 5c374776a8bc mercurial/commands.py --- a/mercurial/commands.py Tue Mar 07 08:46:19 2006 +0100 +++ b/mercurial/commands.py Tue Mar 07 22:27:18 2006 +0100 @@ -593,12 +593,7 @@ change = repo.changelog.read(node) mmap = repo.manifest.read(change[0]) - for src, abs, rel, exact in walk(repo, pats, opts): - if abs not in mmap: - ui.warn(_("warning: %s is not in the repository!\n") % - ((pats and rel) or abs)) - continue - + for src, abs, rel, exact in walk(repo, pats, opts, node=node): f = repo.file(abs) if not opts['text'] and util.binary(f.read(mmap[abs])): ui.write(_("%s: binary file\n") % ((pats and rel) or abs))