D353: extensions: don't give AttributeError bytes message on Python 3
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Tue Aug 15 20:18:20 UTC 2017
durin42 updated this revision to Diff 946.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D353?vs=800&id=946
REVISION DETAIL
https://phab.mercurial-scm.org/D353
AFFECTED FILES
mercurial/extensions.py
CHANGE DETAILS
diff --git a/mercurial/extensions.py b/mercurial/extensions.py
--- a/mercurial/extensions.py
+++ b/mercurial/extensions.py
@@ -396,8 +396,8 @@
break
if currcls is object:
- raise AttributeError(
- _("type '%s' has no property '%s'") % (cls, propname))
+ raise AttributeError(r"type '%s' has no property '%s'" % (
+ cls, propname))
def wrapfunction(container, funcname, wrapper):
'''Wrap the function named funcname in container
To: durin42, #hg-reviewers, yuja
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list