Submitter | Katsunori FUJIWARA |
---|---|
Date | Aug. 2, 2014, 1:02 p.m. |
Message ID | <f75a4312e85846fedab4.1406984532@feefifofum> |
Download | mbox | patch |
Permalink | /patch/5231/ |
State | Accepted |
Commit | 135176a198d0837e8b4f1a32397515a124a5cb37 |
Headers | show |
Comments
Patch
diff --git a/hgext/gpg.py b/hgext/gpg.py --- a/hgext/gpg.py +++ b/hgext/gpg.py @@ -277,8 +277,9 @@ % hgnode.short(n) for n in nodes]) try: + editor = cmdutil.getcommiteditor(editform='gpg.sign', **opts) repo.commit(message, opts['user'], opts['date'], match=msigs, - editor=cmdutil.getcommiteditor(**opts)) + editor=editor) except ValueError, inst: raise util.Abort(str(inst))