[PATCH 1 of 3] ui: allow edit() to work with revision extras

Alexander Drozdov al.drozdov at gmail.com
Thu Feb 6 03:54:37 CST 2014


# HG changeset patch
# User Alexander Drozdov <al.drozdov at gmail.com>
# Date 1391672308 -14400
#      Thu Feb 06 11:38:28 2014 +0400
# Node ID 0946be793f356c54ef3a8f4f0de2819d8625c51a
# Parent  aa51392da50763f3e7b9ec40acc3a97682488b66
ui: allow edit() to work with revision extras

Make edit() to accept optional 'extra' dictionary.

diff --git a/mercurial/ui.py b/mercurial/ui.py
--- a/mercurial/ui.py
+++ b/mercurial/ui.py
@@ -712,7 +712,7 @@
          if self.debugflag:
              opts['label'] = opts.get('label', '') + ' ui.debug'
              self.write(*msg, **opts)
-    def edit(self, text, user):
+    def edit(self, text, user, extra={}):
          (fd, name) = tempfile.mkstemp(prefix="hg-editor-", suffix=".txt",
                                        text=True)
          try:




More information about the Mercurial-devel mailing list