1
0
Fork 0

Fix a stupid syntax error

This commit is contained in:
Ethanell 2020-02-01 17:46:52 +01:00
parent d1e5936f97
commit d4f1150ab3

View file

@ -89,7 +89,7 @@ def addcmd(json):
if "sauce" in json:
for s in json["sauce"]:
try:
c.sauce.append(Sauce.guery.get(s))
c.sauce.append(Sauce.query.get(s))
except AttributeError:
pass
if "drink" in json: