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:
|
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:
|
||||||
|
|
Reference in a new issue