Fix indentation
This commit is contained in:
parent
84c62456a3
commit
f2d22d6364
1 changed files with 4 additions and 4 deletions
|
@ -264,10 +264,10 @@ def output(path, url, datadir, data):
|
|||
("locales", "Translations", "'string'")
|
||||
]
|
||||
for count, (header_class, header_label, sort_type) in enumerate(table_headers):
|
||||
if sort_type:
|
||||
w('<th onclick="clickSort(%d, %s, this)" class="addon-%s header">%s </th>' % (count, sort_type, header_class, header_label))
|
||||
else:
|
||||
w('<th class="addon-%s header">%s </th>' % (header_class, header_label))
|
||||
if sort_type:
|
||||
w('<th onclick="clickSort(%d, %s, this)" class="addon-%s header">%s </th>' % (count, sort_type, header_class, header_label))
|
||||
else:
|
||||
w('<th class="addon-%s header">%s </th>' % (header_class, header_label))
|
||||
w('</tr>\n</thead>\n<tbody>')
|
||||
|
||||
addons = data.get_all(tag="campaigns")[0]
|
||||
|
|
Loading…
Add table
Reference in a new issue