forked from nathanwoodburn/firewalletbrowser
fix: Use double quotes for rendering DS record
This commit is contained in:
@@ -105,7 +105,7 @@ def dns(data, edit=False):
|
|||||||
|
|
||||||
|
|
||||||
elif entry['type'] == 'DS':
|
elif entry['type'] == 'DS':
|
||||||
ds = f'{entry['keyTag']} {entry['algorithm']} {entry['digestType']} {entry['digest']}'
|
ds = f"{entry['keyTag']} {entry['algorithm']} {entry['digestType']} {entry['digest']}"
|
||||||
html_output += f"<td>{ds}</td>\n"
|
html_output += f"<td>{ds}</td>\n"
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user