Fixed UP030 (format-literals): Use implicit references for positional format fields

This commit is contained in:
Teal Dulcet 2023-12-22 07:17:45 -08:00 committed by Joshua Tauberer
parent fba92de051
commit eefc0514b2
1 changed files with 1 additions and 1 deletions

View File

@ -679,7 +679,7 @@ def check_dnssec(domain, env, output, dns_zonefiles, is_checking_primary=False):
output.print_line("")
output.print_line("The DS record is currently set to:")
for rr in sorted(ds):
output.print_line("Key Tag: {0}, Algorithm: {1}, Digest Type: {2}, Digest: {3}".format(*rr))
output.print_line("Key Tag: {}, Algorithm: {}, Digest Type: {}, Digest: {}".format(*rr))
def check_mail_domain(domain, env, output):
# Check the MX record.