Explorar el Código

Merge 79ff35ff2b into 2b095c8c77

pull/236/merge
Juan Pablo Giménez GitHub hace 6 años
padre
commit
3e9d8a4a8d
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      modules/base_plugins/brew_steps/__init__.py

+ 2
- 2
modules/base_plugins/brew_steps/__init__.py Ver fichero

@@ -201,8 +201,8 @@ class BoilStep(StepBase):


def check_hop_timer(self, number, value):
if self.__getattribute__("hop_%s_added" % number) is not True and time.time() > (
if isinstance(value, int) and \
self.__getattribute__("hop_%s_added" % number) is not True and time.time() > (
self.timer_end - (int(self.timer) * 60 - int(value) * 60)):
self.__setattr__("hop_%s_added" % number, True)
self.notify("Hop Alert", "Please add Hop %s" % number, timeout=None)


Cargando…
Cancelar
Guardar