Browse Source
Fix `UnboundLocalError` for editing `public_updates_channel`
pull/6098/head
Nadir Chowdhury
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
discord/guild.py
|
|
@ -1216,10 +1216,10 @@ class Guild(Hashable): |
|
|
|
except KeyError: |
|
|
|
pass |
|
|
|
else: |
|
|
|
if rules_channel is None: |
|
|
|
fields['public_updates_channel_id'] = rules_channel |
|
|
|
if public_updates_channel is None: |
|
|
|
fields['public_updates_channel_id'] = public_updates_channel |
|
|
|
else: |
|
|
|
fields['public_updates_channel_id'] = rules_channel.id |
|
|
|
fields['public_updates_channel_id'] = public_updates_channel.id |
|
|
|
await http.edit_guild(self.id, reason=reason, **fields) |
|
|
|
|
|
|
|
async def fetch_channels(self): |
|
|
|