fix: Use double quotes for rendering DS record
All checks were successful
Build Docker / Build Image (push) Successful in 43s
All checks were successful
Build Docker / Build Image (push) Successful in 43s
This commit is contained in:
parent
3844acdaf8
commit
b5c3075fba
@ -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:
|
||||||
|
Loading…
Reference in New Issue
Block a user