##// END OF EJS Templates
error: use r-string to properly pop hints from **kw...
Augie Fackler -
r31503:0ca00905 default
parent child Browse files
Show More
@@ -22,7 +22,7 b' class Hint(object):'
22 22 pass remaining arguments to the exception class.
23 23 """
24 24 def __init__(self, *args, **kw):
25 self.hint = kw.pop('hint', None)
25 self.hint = kw.pop(r'hint', None)
26 26 super(Hint, self).__init__(*args, **kw)
27 27
28 28 class RevlogError(Hint, Exception):
General Comments 0
You need to be logged in to leave comments. Login now