# HG changeset patch # User Martin von Zweigbergk # Date 2020-10-20 15:58:20 # Node ID 5bb900885311b49238e9d297968ef77b3025df56 # Parent 450e17e5960344494402d3183eb5cc82977dc3c4 errors: remove unnecessary override of __bytes__ in RevlogError StorageError already provides the same definition. Differential Revision: https://phab.mercurial-scm.org/D9234 diff --git a/mercurial/error.py b/mercurial/error.py --- a/mercurial/error.py +++ b/mercurial/error.py @@ -48,7 +48,7 @@ class StorageError(Hint, Exception): class RevlogError(StorageError): - __bytes__ = _tobytes + pass class SidedataHashError(RevlogError):