diff options
| author | Rapptz <[email protected]> | 2017-04-08 18:05:46 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-04-08 18:05:46 -0400 |
| commit | 580b4baef9e86e873f60f950951569881215a03d (patch) | |
| tree | ed367e77baab00680e85ff7a44d774e37f987ebb | |
| parent | Fix File not using the filename if given (diff) | |
| download | discord.py-580b4baef9e86e873f60f950951569881215a03d.tar.xz discord.py-580b4baef9e86e873f60f950951569881215a03d.zip | |
Fix view_audit_log incorrect pluralisation.
| -rw-r--r-- | discord/permissions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/permissions.py b/discord/permissions.py index 20f03301..42f4718f 100644 --- a/discord/permissions.py +++ b/discord/permissions.py @@ -289,7 +289,7 @@ class Permissions: return self._bit(7) @view_audit_log.setter - def view_audit_logs(self, value): + def view_audit_log(self, value): self._set(7, value) # 2 unused |