Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dnsviz/dnsviz.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasey Deccio <casey@deccio.net>2019-02-04 21:19:37 +0300
committerCasey Deccio <casey@deccio.net>2019-02-04 21:19:37 +0300
commit7782fe4e4660d0e1f8bb9ac58c03468b71fb0b61 (patch)
tree74627c3bff6dd98cda66a448758518331599486f
parent22ec10d1b912eed6e1514ef7a27e15ba4d4a207b (diff)
Remove extra argument
-rw-r--r--dnsviz/response.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dnsviz/response.py b/dnsviz/response.py
index 8363787..1020e69 100644
--- a/dnsviz/response.py
+++ b/dnsviz/response.py
@@ -1063,7 +1063,7 @@ class RRsetInfo(DNSResponseComponent):
self.set_wildcard_info(rrsig, server, client, response, rdclass, is_referral)
def create_or_update_cname_from_dname_info(self, synthesized_cname_info, server, client, response, rdclass):
- return self.insert_into_list(synthesized_cname_info, self.cname_info_from_dname, server, client, response, rdclass)
+ return self.insert_into_list(synthesized_cname_info, self.cname_info_from_dname, server, client, response)
def is_wildcard(self, rrsig):
if self.rrset.name[0] == '*':