histedit: fix silly bug that was unpacking a bytestr before writing it
authorAugie Fackler <augie@google.com>
Tue, 13 Feb 2018 18:25:05 -0500
changeset 36170 28830ba50687
parent 36169 0ea86f70da8e
child 36171 f8f1973eaf8a
histedit: fix silly bug that was unpacking a bytestr before writing it I have this foggy notion that popbuffer() might have returned a list in the past, but it doesn't anymore, and this was breaking on Python 3. As a bonus, it's probably a ton faster on Python 2 now. Differential Revision: https://phab.mercurial-scm.org/D2243
hgext/histedit.py
--- a/hgext/histedit.py	Tue Feb 13 18:13:33 2018 -0500
+++ b/hgext/histedit.py	Tue Feb 13 18:25:05 2018 -0500
@@ -491,7 +491,7 @@
         repo.dirstate.setbranch(rulectx.branch())
         if stats and stats[3] > 0:
             buf = repo.ui.popbuffer()
-            repo.ui.write(*buf)
+            repo.ui.write(buf)
             raise error.InterventionRequired(
                 _('Fix up the change (%s %s)') %
                 (self.verb, node.short(self.node)),