summaryrefslogtreecommitdiffstats
path: root/www/gen_sched_table.py
diff options
context:
space:
mode:
Diffstat (limited to 'www/gen_sched_table.py')
-rwxr-xr-xwww/gen_sched_table.py4
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&nbsp;date', 'Type', 'Comments', tr = 'th')
if len(sys.argv) > 1:
f = open(sys.argv[1])