Made sure that modlogs channel is only deleted if it has a value within it

pull/8/head
sgoudham 4 years ago
parent 8274b2bc61
commit 0c4ccebdef

@ -90,7 +90,10 @@ def cache_modlogs(guildid, channel):
# Deleting the key - value pair for guild/modlogs
def del_modlog_channel(guildid):
if modlogs[guildid] is not None:
del modlogs[guildid]
else:
pass
# Remove the value of modlog for the guild specified

Loading…
Cancel
Save