Update beerxml.py

This commit is contained in:
swimIan
2017-07-15 22:38:42 -07:00
committed by GitHub
parent ed9bbed084
commit e750fbb70e
+2 -2
View File
@@ -67,8 +67,8 @@ class BeerXMLImport(FlaskView):
try:
## Add Mashin step
Step.insert(**{"name": "MashIn", "type": mashinstep_type, "config": {"kettle": mash_kettle, "temp": mashin_temp}})
## Add Mashin step
Step.insert(**{"name": "MashIn", "type": mashinstep_type, "config": {"kettle": mash_kettle, "temp": mashin_temp}})
for row in steps:
Step.insert(**{"name": row.get("name"), "type": mashstep_type, "config": {"kettle": mash_kettle, "temp": float(row.get("temp")), "timer": row.get("timer")}})