record: change return value of recording code
authorLaurent Charignon <lcharignon@fb.com>
Wed, 25 Mar 2015 15:51:57 -0700
changeset 24476 1378f20c8564
parent 24475 06cbff4674a3
child 24477 325f03de849d
record: change return value of recording code It makes it easier to include interactive mode to more commands that require to get a reference to the newly created node
mercurial/cmdutil.py
--- a/mercurial/cmdutil.py	Wed Mar 25 14:01:14 2015 -0700
+++ b/mercurial/cmdutil.py	Wed Mar 25 15:51:57 2015 -0700
@@ -186,9 +186,7 @@
 
             # Make all of the pathnames absolute.
             newfiles = [repo.wjoin(nf) for nf in newfiles]
-            commitfunc(ui, repo, *newfiles, **opts)
-
-            return 0
+            return commitfunc(ui, repo, *newfiles, **opts)
         finally:
             # 5. finally restore backed-up files
             try: