##// END OF EJS Templates
commands: removed part of description from abort and continue...
Taapas Agrawal -
r42849:55d8329b default
parent child Browse files
Show More
@@ -141,8 +141,6 b' def abort(ui, repo, **opts):'
141 and unshelve if they are in an unfinished state.
141 and unshelve if they are in an unfinished state.
142
142
143 use --dry-run/-n to dry run the command.
143 use --dry-run/-n to dry run the command.
144 A new operation can be added to this by registering the operation and
145 abort logic in the unfinishedstates list under statemod.
146 """
144 """
147 dryrun = opts.get(r'dry_run')
145 dryrun = opts.get(r'dry_run')
148 abortstate = cmdutil.getunfinishedstate(repo)
146 abortstate = cmdutil.getunfinishedstate(repo)
@@ -1903,8 +1901,6 b' def continuecmd(ui, repo, **opts):'
1903 and unshelve if they are in an interrupted state.
1901 and unshelve if they are in an interrupted state.
1904
1902
1905 use --dry-run/-n to dry run the command.
1903 use --dry-run/-n to dry run the command.
1906 A new operation can be added to this by registering the operation and
1907 continue logic in the unfinishedstates list under statemod.
1908 """
1904 """
1909 dryrun = opts.get(r'dry_run')
1905 dryrun = opts.get(r'dry_run')
1910 contstate = cmdutil.getunfinishedstate(repo)
1906 contstate = cmdutil.getunfinishedstate(repo)
General Comments 0
You need to be logged in to leave comments. Login now