1
0
Fork 0
mirror of synced 2024-05-20 20:42:27 +12:00

Stopped trying to pull from a one indexed list, as we no longer use that in key'd tables

This commit is contained in:
phxntxm 2017-03-08 01:20:42 -06:00
parent 17b9e0253b
commit e482f671d8

View file

@ -156,7 +156,7 @@ class Deviantart:
await ctx.send("You are not subscribed to anyone at the moment!")
elif username in content['subbed']:
content['subbed'].remove(username)
await utils.update_content('deviantart', {'subbed': content[0]['subbed']}, key)
await utils.update_content('deviantart', {'subbed': content['subbed']}, key)
await ctx.send("You have just unsubscribed from {}!".format(username))
else:
await ctx.send("You are not subscribed to that user!")