Mercurial > hg
changeset 2645:9bd3d44c32f6
fix 'hg cat' broken by 156fb1feab62
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Mon, 17 Jul 2006 02:09:35 +0200 |
parents | b24efed24e8f |
children | ddf404954092 |
files | mercurial/commands.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Mon Jul 17 02:00:49 2006 +0200 +++ b/mercurial/commands.py Mon Jul 17 02:09:35 2006 +0200 @@ -932,7 +932,7 @@ %d dirname of file being printed, or '.' if in repo root %p root-relative path name of file being printed """ - ctx = repo.changectx(opts['rev'] or -1) + ctx = repo.changectx(opts['rev'] or "-1") for src, abs, rel, exact in walk(repo, (file1,) + pats, opts, ctx.node()): fp = make_file(repo, opts['output'], ctx.node(), pathname=abs) fp.write(ctx.filectx(abs).data())