Browse Source

Fix AuditLogDiff.__iter__ to return an actual iterable.

Fixes #589.
pull/451/merge
Rapptz 8 years ago
parent
commit
1cf50f8054
  1. 2
      discord/audit_logs.py

2
discord/audit_logs.py

@ -87,7 +87,7 @@ class AuditLogDiff:
return len(self.__dict__)
def __iter__(self):
return self.__dict__.items()
return iter(self.__dict__.items())
def __repr__(self):
return '<AuditLogDiff attrs={0!r}>'.format(tuple(self.__dict__))

Loading…
Cancel
Save