##// END OF EJS Templates
record: change return value of recording code...
Laurent Charignon -
r24476:1378f20c default
parent child Browse files
Show More
@@ -186,9 +186,7 b' def dorecord(ui, repo, commitfunc, cmdsu'
186 186
187 187 # Make all of the pathnames absolute.
188 188 newfiles = [repo.wjoin(nf) for nf in newfiles]
189 commitfunc(ui, repo, *newfiles, **opts)
190
191 return 0
189 return commitfunc(ui, repo, *newfiles, **opts)
192 190 finally:
193 191 # 5. finally restore backed-up files
194 192 try:
General Comments 0
You need to be logged in to leave comments. Login now