From 96c18f39b0f6ae12a0ed06ecd7b1a5259bd235ee Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sun, 28 Mar 2010 15:46:52 -0400 Subject: Attempt to fix up the data format. --- repo/hooks/ciabot.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'repo') 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()) -- cgit v1.2.1