Disallow none target

This commit is contained in:
Jeremy Zhang 2018-10-09 21:13:19 +00:00
parent 65e29b9deb
commit 0cb1f0646e

View File

@ -194,6 +194,8 @@ def get_channels_list(guildchannels):
overwrites = [] overwrites = []
isTextChannel = isinstance(channel, discord.channel.TextChannel) isTextChannel = isinstance(channel, discord.channel.TextChannel)
for target, overwrite in channel.overwrites: for target, overwrite in channel.overwrites:
if not target:
continue
if isinstance(target, discord.Role): if isinstance(target, discord.Role):
type = "role" type = "role"
else: else: