changeset 47434:5eb52edc08bd

histedit: don't record labels for output that we will discard Differential Revision: https://phab.mercurial-scm.org/D10881
author Martin von Zweigbergk <martinvonz@google.com>
date Fri, 18 Jun 2021 13:44:05 -0700
parents fc8e29ffc380
children e9fbf8fd5f33
files hgext/histedit.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/histedit.py	Thu Jun 10 15:56:55 2021 -0700
+++ b/hgext/histedit.py	Fri Jun 18 13:44:05 2021 -0700
@@ -575,7 +575,7 @@
         parentctx, but does not commit them."""
         repo = self.repo
         rulectx = repo[self.node]
-        repo.ui.pushbuffer(error=True, labeled=True)
+        repo.ui.pushbuffer(error=True)
         hg.update(repo, self.state.parentctxnode, quietempty=True)
         repo.ui.popbuffer()
         stats = applychanges(repo.ui, repo, rulectx, {})