diff options
-rwxr-xr-x | repo/hooks/ciabot.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/repo/hooks/ciabot.py b/repo/hooks/ciabot.py index a3828197..8084525d 100755 --- a/repo/hooks/ciabot.py +++ b/repo/hooks/ciabot.py @@ -137,7 +137,9 @@ def report(refname, merged): break (author, ts) = headers["author"].split(">") author = author.replace("<", "").split("@")[0].split()[-1] - ts = ts.strip() + + # This ignores the timezone. Not clear what to do with it... + ts = ts.strip().split()[0] context = locals() context.update(globals()) |