D9352: config: clean up message about ignored untrusted config
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Sat Nov 21 00:26:46 UTC 2020
martinvonz created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
The error message relied on Python's default formatting of arguments
to an Exception's constructor. Let's try to make it a little more
readable for users.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D9352
AFFECTED FILES
mercurial/ui.py
tests/test-trusted.py.out
CHANGE DETAILS
diff --git a/tests/test-trusted.py.out b/tests/test-trusted.py.out
--- a/tests/test-trusted.py.out
+++ b/tests/test-trusted.py.out
@@ -174,7 +174,7 @@
# parse error
# different user, different group
not trusting file .hg/hgrc from untrusted user abc, group def
-ignored: ('foo', '.hg/hgrc:1')
+ignored .hg/hgrc:1: foo
# same user, same group
hg: parse error at .hg/hgrc:1: foo
diff --git a/mercurial/ui.py b/mercurial/ui.py
--- a/mercurial/ui.py
+++ b/mercurial/ui.py
@@ -469,7 +469,9 @@
except error.ParseError as inst:
if trusted:
raise
- self.warn(_(b'ignored: %s\n') % stringutil.forcebytestr(inst))
+ self.warn(
+ _(b'ignored %s: %s\n') % (inst.location, inst.message)
+ )
self._applyconfig(cfg, trusted, root)
To: martinvonz, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list