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: if "sauce" in json:
for s in json["sauce"]: for s in json["sauce"]:
try: try:
c.sauce.append(Sauce.guery.get(s)) c.sauce.append(Sauce.query.get(s))
except AttributeError: except AttributeError:
pass pass
if "drink" in json: if "drink" in json: