##// END OF EJS Templates
gpg: pass 'editform' argument to 'cmdutil.getcommiteditor'...
FUJIWARA Katsunori -
r22001:135176a1 default
parent child Browse files
Show More
@@ -277,8 +277,9 def sign(ui, repo, *revs, **opts):
277 % hgnode.short(n)
277 % hgnode.short(n)
278 for n in nodes])
278 for n in nodes])
279 try:
279 try:
280 editor = cmdutil.getcommiteditor(editform='gpg.sign', **opts)
280 repo.commit(message, opts['user'], opts['date'], match=msigs,
281 repo.commit(message, opts['user'], opts['date'], match=msigs,
281 editor=cmdutil.getcommiteditor(**opts))
282 editor=editor)
282 except ValueError, inst:
283 except ValueError, inst:
283 raise util.Abort(str(inst))
284 raise util.Abort(str(inst))
284
285
General Comments 0
You need to be logged in to leave comments. Login now