Fix a stupid syntax error
This commit is contained in:
parent
d1e5936f97
commit
d4f1150ab3
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Reference in a new issue