Eliminate / replace remaining cPickle references in test scripts.
[scons.git] / www / gen_sched_table.py
index b69d7a074d8e8c097c2d26cfcdb36ce5386fc9c0..e67f0d74c8700a92cd800d046c4bf1c7cb381936 100755 (executable)
@@ -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] == '+':
@@ -42,3 +42,9 @@ for line in f:
                category = current = type
        row(date, category, desc)
 print '</table>'
+
+# Local Variables:
+# tab-width:4
+# indent-tabs-mode:nil
+# End:
+# vim: set expandtab tabstop=4 shiftwidth=4: