From 6612f1e6317616c3b4e0a20cc1b1d17ad9a0df21 Mon Sep 17 00:00:00 2001 From: swimIan Date: Sat, 14 Oct 2017 08:26:39 -0700 Subject: [PATCH] Fixes indentation error for getmashintemp() function --- modules/recipe_import/beerxml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/recipe_import/beerxml.py b/modules/recipe_import/beerxml.py index 8883cb3..8f0a702 100644 --- a/modules/recipe_import/beerxml.py +++ b/modules/recipe_import/beerxml.py @@ -91,7 +91,7 @@ class BeerXMLImport(FlaskView): e = xml.etree.ElementTree.parse(self.BEER_XML_FILE).getroot() return float(e.find('./RECIPE[%s]/BOIL_TIME' % (str(id))).text) -def getMashinTemp(self, id): + def getMashinTemp(self, id): e = xml.etree.ElementTree.parse(self.BEER_XML_FILE).getroot() tempstr = e.find('./RECIPE[%s]/MASH/MASH_STEPS/MASH_STEP/INFUSE_TEMP' % (str(id))).text val = tempstr[:-1]