aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-03-24 20:53:53 +0100
committerDavid Robillard <d@drobilla.net>2019-03-24 21:23:03 +0100
commit4ded00e4e689d5aa8a057957a9015ce9194ef737 (patch)
tree60694c5effd0d6efb874e395721d1b339529031d
parentdab26d618ec73f56a9fe0256b4f884211e3e7692 (diff)
downloadlv2-4ded00e4e689d5aa8a057957a9015ce9194ef737.tar.xz
Consistently use th for table header cells
-rwxr-xr-xlv2specgen/lv2specgen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py
index 8793413..c8612e1 100755
--- a/lv2specgen/lv2specgen.py
+++ b/lv2specgen/lv2specgen.py
@@ -370,7 +370,7 @@ def getProperty(val, first=True):
"Return a string representing a property value in a property table"
doc = ''
if not first:
- doc += '<tr><td></td>' # Empty cell in header column
+ doc += '<tr><th></th>' # Empty cell in header column
doc += '<td>%s</td></tr>\n' % val
return doc