fix AttributeError when unpickling

This commit is contained in:
Laura Klünder 2017-11-27 13:41:16 +01:00
parent c698c1d6c6
commit 4c611995b8

View file

@ -153,6 +153,8 @@ class BaseRouterProxy:
return result
def __getattr__(self, name):
if name == '__setstate__':
raise AttributeError
return getattr(self.src, name)