diff options
author | Greg Noel <GregNoel@tigris.org> | 2008-10-02 03:05:31 (GMT) |
---|---|---|
committer | Greg Noel <GregNoel@tigris.org> | 2008-10-02 03:05:31 (GMT) |
commit | 6d85dc1c81f96ce46437c38b1c67535871463a51 (patch) | |
tree | 0b32813e3ffbdad23b84b183cae7546ee146e54d /www/gen_sched_table.py | |
parent | 971b75964e511cb3b1d7e045bbcbf2fb70343941 (diff) | |
download | SCons-6d85dc1c81f96ce46437c38b1c67535871463a51.zip SCons-6d85dc1c81f96ce46437c38b1c67535871463a51.tar.gz SCons-6d85dc1c81f96ce46437c38b1c67535871463a51.tar.bz2 |
Correct typos to roadmap.html that snuck in...
Diffstat (limited to 'www/gen_sched_table.py')
-rwxr-xr-x | www/gen_sched_table.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/gen_sched_table.py b/www/gen_sched_table.py index 572de2a..b69d7a0 100755 --- a/www/gen_sched_table.py +++ b/www/gen_sched_table.py @@ -6,14 +6,14 @@ import datetime months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] -print '<table>' +print '<table width="100%">' def row(*cells, **kw): td = kw.get('tr','td') print ' <tr>' for cell in cells: print ' <%s>%s</%s>' % (td,cell,td) print ' </tr>' -row('Est. date', 'Type', 'Comments', tr = 'th') +row('Estimated date', 'Type', 'Comments', tr = 'th') if len(sys.argv) > 1: f = open(sys.argv[1]) |