From patchwork Sat Aug 2 13:02:17 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [08, of, 15] transplant: pass 'editform' argument to 'cmdutil.getcommiteditor' From: Katsunori FUJIWARA X-Patchwork-Id: 5237 Message-Id: <9de2c0a507e9f4159e57.1406984537@feefifofum> To: mercurial-devel@selenic.com Date: Sat, 02 Aug 2014 22:02:17 +0900 # HG changeset patch # User FUJIWARA Katsunori # Date 1406983586 -32400 # Sat Aug 02 21:46:26 2014 +0900 # Node ID 9de2c0a507e9f4159e5700b144d98602ae3f8934 # Parent 587ac098dcaac83333f09d98e627826e312be9ae transplant: 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, COMMAND and ROUTE are omitted. diff --git a/hgext/transplant.py b/hgext/transplant.py --- a/hgext/transplant.py +++ b/hgext/transplant.py @@ -86,7 +86,7 @@ self.opener = scmutil.opener(self.path) self.transplants = transplants(self.path, 'transplants', opener=self.opener) - self.editor = cmdutil.getcommiteditor(**opts) + self.editor = cmdutil.getcommiteditor(editform='transplant', **opts) def applied(self, repo, node, parent): '''returns True if a node is already an ancestor of parent