diff mercurial/rewriteutil.py @ 47282:055f7b9f2307

rewriteutil: add pointer to help text when rewrite would cause divergence The evolve extension's version of the hint has this pointer. I missed it when I moved it to core. Differential Revision: https://phab.mercurial-scm.org/D10723
author Martin von Zweigbergk <martinvonz@google.com>
date Mon, 17 May 2021 15:15:44 -0700
parents d90f6237b3aa
children 8125bcd28a5c
line wrap: on
line diff
--- a/mercurial/rewriteutil.py	Tue May 04 11:20:10 2021 +0200
+++ b/mercurial/rewriteutil.py	Mon May 17 15:15:44 2021 -0700
@@ -114,7 +114,11 @@
                 raise error.InputError(msg)
             else:
                 raise error.InputError(
-                    msg, hint=_(b"add --verbose for details")
+                    msg,
+                    hint=_(
+                        b"add --verbose for details or see "
+                        b"'hg help evolution.instability'"
+                    ),
                 )