Submitter | Yuya Nishihara |
---|---|
Date | Dec. 16, 2018, 9:02 a.m. |
Message ID | <12253a8199a0158bb2aa.1544950936@mimosa> |
Download | mbox | patch |
Permalink | /patch/37211/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/error.py b/mercurial/error.py --- a/mercurial/error.py +++ b/mercurial/error.py @@ -44,14 +44,6 @@ class StorageError(Hint, Exception): class RevlogError(StorageError): __bytes__ = _tobytes - def __str__(self): - # avoid cycle, and directly implement unimethod for this - # __str__ to allow delaying the import of encoding until - # someone actually wants the __str__ of a RevlogError (which - # should be very rare). - from . import encoding - return encoding.unifromlocal(_tobytes(self)) - class FilteredIndexError(IndexError): __bytes__ = _tobytes