Submitter | Augie Fackler |
---|---|
Date | March 19, 2017, 6:26 p.m. |
Message ID | <9c25b4e6ab7bf364a101.1489947976@imladris.local> |
Download | mbox | patch |
Permalink | /patch/19451/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/error.py b/mercurial/error.py --- a/mercurial/error.py +++ b/mercurial/error.py @@ -22,7 +22,7 @@ class Hint(object): pass remaining arguments to the exception class. """ def __init__(self, *args, **kw): - self.hint = kw.pop('hint', None) + self.hint = kw.pop(r'hint', None) super(Hint, self).__init__(*args, **kw) class RevlogError(Hint, Exception):