ソースを参照

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."""


読み込み中…
キャンセル
保存