Explorar el Código

Hyphen unnecessary (#43.

tags/v0.2
Ben Kurtovic hace 10 años
padre
commit
86587c3b66
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      earwigbot/commands/remind.py

+ 1
- 1
earwigbot/commands/remind.py Ver fichero

@@ -70,7 +70,7 @@ class Remind(Command):
"""Get a free ID for a new reminder."""
taken = set(robj.id for robj in chain(*self.reminders.values()))
num = random.choice(list(set(range(4096)) - taken))
return "R-{0:03X}".format(num)
return "R{0:03X}".format(num)

def _create_reminder(self, data, user):
"""Create a new reminder for the given user."""


Cargando…
Cancelar
Guardar