Преглед изворни кода

Add y as a time suffix for !remind.

tags/v0.2
Ben Kurtovic пре 9 година
родитељ
комит
02b86de8a9
1 измењених фајлова са 3 додато и 1 уклоњено
  1. +3
    -1
      earwigbot/commands/remind.py

+ 3
- 1
earwigbot/commands/remind.py Прегледај датотеку

@@ -61,7 +61,9 @@ class Remind(Command):
ast.FloorDiv: operator.floordiv, ast.Mod: operator.mod,
ast.Pow: operator.pow
}
time_units = {"s": 1, "m": 60, "h": 3600, "d": 86400, "w": 604800}
time_units = {
"s": 1, "m": 60, "h": 3600, "d": 86400, "w": 604800, "y": 31536000
}

def _evaluate(node):
"""Convert an AST node into a real number or raise an exception."""


Loading…
Откажи
Сачувај