From dab35f441cb9e4db2556e93f5827c6079710ecf6 Mon Sep 17 00:00:00 2001 From: Otthorn Date: Mon, 5 Apr 2021 18:07:28 +0200 Subject: [PATCH] :bug: add missing comma --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index b16c526..c9fd05c 100644 --- a/main.py +++ b/main.py @@ -160,8 +160,8 @@ def txt_records_handler(zone, records): records[name].append( TXT.TXT( - dns.rdataclass.IN - dns.rdatatype.TXT + dns.rdataclass.IN, + dns.rdatatype.TXT, record["field2"] ) )