commands: removed part of description from abort and continue
authorTaapas Agrawal <taapas2897@gmail.com>
Fri, 19 Jul 2019 01:49:10 +0530
changeset 42627 55d8329ba509
parent 42626 944604118c0f
child 42628 eb27d9eee2cc
commands: removed part of description from abort and continue The description for registration of new `continuefunc` or `abortfunc` is removed as it is not required from user perspective. Differential Revision: https://phab.mercurial-scm.org/D6660
mercurial/commands.py
--- a/mercurial/commands.py	Sat Jul 20 22:18:22 2019 -0400
+++ b/mercurial/commands.py	Fri Jul 19 01:49:10 2019 +0530
@@ -141,8 +141,6 @@
     and unshelve if they are in an unfinished state.
 
     use --dry-run/-n to dry run the command.
-    A new operation can be added to this by registering the operation and
-    abort logic in the unfinishedstates list under statemod.
     """
     dryrun = opts.get(r'dry_run')
     abortstate = cmdutil.getunfinishedstate(repo)
@@ -1903,8 +1901,6 @@
     and unshelve if they are in an interrupted state.
 
     use --dry-run/-n to dry run the command.
-    A new operation can be added to this by registering the operation and
-    continue logic in the unfinishedstates list under statemod.
     """
     dryrun = opts.get(r'dry_run')
     contstate = cmdutil.getunfinishedstate(repo)