hgext/mq.py
changeset 44435 4152183acedd
parent 44434 2f290136b7d6
child 44452 9d2b2df2c2ba
--- a/hgext/mq.py	Fri Jan 24 15:28:37 2020 -0800
+++ b/hgext/mq.py	Fri Jan 24 15:51:19 2020 -0800
@@ -858,7 +858,7 @@
         strip(self.ui, repo, [n], update=False, backup=False)
 
         ctx = repo[rev]
-        ret = hg.merge(ctx)
+        ret = hg.merge(ctx, remind=False)
         if ret:
             raise error.Abort(_(b"update returned %d") % ret)
         n = newcommit(repo, None, ctx.description(), ctx.user(), force=True)