Browse Source
fix incorrect paren positioning from last commit
pull/81/merge
Andrei
7 years ago
No known key found for this signature in database
GPG Key ID: 4D2A02C7D500E9D9
1 changed files with
1 additions and
1 deletions
-
disco/state.py
|
|
@ -133,7 +133,7 @@ class State(object): |
|
|
|
|
|
|
|
for event in self.EVENTS: |
|
|
|
func = 'on_' + underscore(event) |
|
|
|
self.listeners.append(self.client.events.on(event, getattr(self, func)), priority=Priority.BEFORE) |
|
|
|
self.listeners.append(self.client.events.on(event, getattr(self, func), priority=Priority.BEFORE)) |
|
|
|
|
|
|
|
def fill_messages(self, channel): |
|
|
|
for message in reversed(next(channel.messages_iter(bulk=True))): |
|
|
|