Browse Source

Actually properly fix GatewayEvent proxying once and for all

pull/27/merge
andrei 8 years ago
parent
commit
9d595047c3
  1. 15
      disco/gateway/events.py

15
disco/gateway/events.py

@ -64,15 +64,12 @@ class GatewayEvent(six.with_metaclass(GatewayEventMeta, Model)):
return cls(obj, client) return cls(obj, client)
def __getattr__(self, name): def __getattr__(self, name):
if six.PY3: try:
_proxy = object.__getattr__(self, '_proxy', None) _proxy = object.__getattribute__(self, '_proxy')
if _proxy: except AttributeError:
return getattr(_proxy, name) return object.__getattribute__(self, name)
else:
if hasattr(self, '_proxy'): return getattr(getattr(self, _proxy), name)
return getattr(getattr(self, self._proxy), name)
return object.__getattribute__(self, name)
def debug(func=None, match=None): def debug(func=None, match=None):

Loading…
Cancel
Save