##// END OF EJS Templates
[PATCH] rawcommit fix again...
mpm@selenic.com -
r403:fda7bb48 default
parent child Browse files
Show More
@@ -520,7 +520,7 b' def push(ui, repo, dest="default-push"):'
520 520 os.kill(child, signal.SIGTERM)
521 521 return r
522 522
523 def rawcommit(ui, repo, flist, **rc):
523 def rawcommit(ui, repo, *flist, **rc):
524 524 "raw commit interface"
525 525
526 526 text = rc['text']
@@ -531,7 +531,7 b' def rawcommit(ui, repo, flist, **rc):'
531 531 print "missing commit text"
532 532 return 1
533 533
534 files = relpath(repo, flist)
534 files = relpath(repo, list(flist))
535 535 if rc['files']:
536 536 files += open(rc['files']).read().splitlines()
537 537
General Comments 0
You need to be logged in to leave comments. Login now