##// 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 os.kill(child, signal.SIGTERM)
520 os.kill(child, signal.SIGTERM)
521 return r
521 return r
522
522
523 def rawcommit(ui, repo, flist, **rc):
523 def rawcommit(ui, repo, *flist, **rc):
524 "raw commit interface"
524 "raw commit interface"
525
525
526 text = rc['text']
526 text = rc['text']
@@ -531,7 +531,7 b' def rawcommit(ui, repo, flist, **rc):'
531 print "missing commit text"
531 print "missing commit text"
532 return 1
532 return 1
533
533
534 files = relpath(repo, flist)
534 files = relpath(repo, list(flist))
535 if rc['files']:
535 if rc['files']:
536 files += open(rc['files']).read().splitlines()
536 files += open(rc['files']).read().splitlines()
537
537
General Comments 0
You need to be logged in to leave comments. Login now