diff options
| author | Chris Rrapi <[email protected]> | 2018-11-29 05:23:15 -0500 |
|---|---|---|
| committer | Chris Rrapi <[email protected]> | 2018-11-29 05:23:15 -0500 |
| commit | dd41dac6805eb5297b5d2b287f91fd2726b31f1a (patch) | |
| tree | 4afa306f105524a6ce6ec39dfaf9cf148f85254f | |
| parent | Fix documentation for NotificationLevel (diff) | |
| download | discord.py-dd41dac6805eb5297b5d2b287f91fd2726b31f1a.tar.xz discord.py-dd41dac6805eb5297b5d2b287f91fd2726b31f1a.zip | |
Fix AttributeError in webhook.send
| -rw-r--r-- | discord/webhook.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/webhook.py b/discord/webhook.py index 0dfe6ba6..a4f84632 100644 --- a/discord/webhook.py +++ b/discord/webhook.py @@ -100,7 +100,7 @@ class WebhookAdapter: """ raise NotImplementedError() - def _store_user(self, data): + def store_user(self, data): # mocks a ConnectionState for appropriate use for Message return BaseUser(state=self, data=data) |