Skip to content
Snippets Groups Projects
Commit dabf8fb8 authored by Katsunori FUJIWARA's avatar Katsunori FUJIWARA
Browse files

shelve: pass 'editform' argument to 'cmdutil.getcommiteditor'

This patch passes 'editform' argument according to the format below:

  EXTENSION[.COMMAND][.ROUTE]

  - EXTENSION: name of extension
  - COMMAND: name of command, if there are two or more commands in EXTENSION
  - ROUTE: name of route, if there are two or more routes in COMMAND

In this patch:

  - 'shelve' is used as COMMAND
  - ROUTE is omitted
parent 3646716b
No related merge requests found
......@@ -178,4 +178,5 @@
if hasmq:
saved, repo.mq.checkapplied = repo.mq.checkapplied, False
try:
editor = cmdutil.getcommiteditor(editform='shelve.shelve', **opts)
return repo.commit(message, user, opts.get('date'), match,
......@@ -181,5 +182,5 @@
return repo.commit(message, user, opts.get('date'), match,
editor=cmdutil.getcommiteditor(**opts))
editor=editor)
finally:
if hasmq:
repo.mq.checkapplied = saved
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment