summaryrefslogtreecommitdiff
path: root/repo
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2010-03-28 15:46:52 -0400
committerEric S. Raymond <esr@thyrsus.com>2010-03-28 15:46:52 -0400
commit96c18f39b0f6ae12a0ed06ecd7b1a5259bd235ee (patch)
tree89d4e857350d68fe6d717b4fe2a63bbad30f5435 /repo
parente193d8ca9dc8061cbf44fb0591862872bb3f5238 (diff)
downloadgpsd-96c18f39b0f6ae12a0ed06ecd7b1a5259bd235ee.tar.gz
Attempt to fix up the data format.
Diffstat (limited to 'repo')
-rwxr-xr-xrepo/hooks/ciabot.py4
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())