summaryrefslogtreecommitdiffstats
path: root/www/gen_sched_table.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2008-10-11 13:15:47 (GMT)
committerSteven Knight <knight@baldmt.com>2008-10-11 13:15:47 (GMT)
commitcc283be5b5ff852b39116b55232567db4b2b7922 (patch)
tree45eaa49fa35547c3f7707d0a493e939bfc27b9e6 /www/gen_sched_table.py
parentc2256436aae3a75d5dc462053500343daebb2469 (diff)
downloadSCons-cc283be5b5ff852b39116b55232567db4b2b7922.zip
SCons-cc283be5b5ff852b39116b55232567db4b2b7922.tar.gz
SCons-cc283be5b5ff852b39116b55232567db4b2b7922.tar.bz2
Update tigris.org for the 1.1.0 release.
Diffstat (limited to 'www/gen_sched_table.py')
-rwxr-xr-xwww/gen_sched_table.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/gen_sched_table.py b/www/gen_sched_table.py
index b69d7a0..e83c5f3 100755
--- a/www/gen_sched_table.py
+++ b/www/gen_sched_table.py
@@ -23,7 +23,7 @@ current = 'UNKNOWN'
for line in f:
if line[0] == '#': continue # comment
if line[0] == '=':
- date,current = line[1:].strip().split()
+ date,current = line[1:].strip().split(None, 1)
now = datetime.date(*tuple([int(i) for i in date.split('-')]))
continue
if line[0] == '+':