Submitter | phabricator |
---|---|
Date | Aug. 16, 2017, 3:47 a.m. |
Message ID | <93349538c8be71fd6cc37dffcd34bdbd@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/23063/ |
State | Not Applicable |
Headers | show |
Comments
Patch
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