changeset 333 | d60a3060f9e2 |
parent 330 | 27d08c0c2a7e |
child 335 | 74b9332faece |
--- a/mercurial/commands.py Tue Jun 14 13:44:37 2005 -0800 +++ b/mercurial/commands.py Tue Jun 14 13:53:22 2005 -0800 @@ -457,7 +457,7 @@ os.kill(child, signal.SIGTERM) return r -def rawcommit(ui, repo, files, **rc): +def rawcommit(ui, repo, flist, **rc): "raw commit interface" text = rc['text'] @@ -468,7 +468,7 @@ print "missing commit text" return 1 - files = relpath(repo, files) + files = relpath(repo, flist) if rc['files']: files += open(rc['files']).read().splitlines()