fix: Use double quotes for rendering DS record
All checks were successful
Build Docker / Build Image (push) Successful in 43s

This commit is contained in:
Nathan Woodburn 2025-01-31 20:17:52 +11:00
parent 3844acdaf8
commit b5c3075fba
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -105,7 +105,7 @@ def dns(data, edit=False):
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"
else: