File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class Geckarbot(BaseBot):
3232 Basic bot info
3333 """
3434 NAME = "Geckarbot"
35- VERSION = "2.16.2 "
35+ VERSION = "2.16.3 "
3636 PLUGIN_DIR = "plugins"
3737 CORE_PLUGIN_DIR = "coreplugins"
3838 CONFIG_DIR = "config"
Original file line number Diff line number Diff line change @@ -651,9 +651,9 @@ async def cmd_quote_del(self, ctx):
651651 # Acquire quotes
652652 candidates = self .get_quotes (song .artist , song .title )
653653 quotes = {}
654- for el in candidates .values ():
655- if not restricted or user .id == el ["author" ]:
656- quotes [el ] = el
654+ for key , quote in candidates .items ():
655+ if not restricted or user .id == quote ["author" ]:
656+ quotes [key ] = quote
657657 if not quotes :
658658 await user .send (Lang .lang (self , "quote_del_empty" ))
659659 await add_reaction (ctx .message , Lang .CMDNOCHANGE )
You can’t perform that action at this time.
0 commit comments