diff --git a/Doxyfile b/Doxyfile index f53bade..b14cb74 100644 --- a/Doxyfile +++ b/Doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = DNScode # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 1.4.1 +PROJECT_NUMBER = 1.6.2 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/docs/html/classdnscode_1_1dnscode_1_1NS.html b/docs/html/classdnscode_1_1dnscode_1_1NS.html index 48482cd..7e1974d 100644 --- a/docs/html/classdnscode_1_1dnscode_1_1NS.html +++ b/docs/html/classdnscode_1_1dnscode_1_1NS.html @@ -132,7 +132,7 @@ Public Attributes    ttl = ttl   - host = target + host = host    data = host   @@ -206,7 +206,7 @@ Additional Inherited Members
- +
dnscode.dnscode.NS.host = targetdnscode.dnscode.NS.host = host
diff --git a/pyproject.toml b/pyproject.toml index 1d63f1e..d446ca8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "dnscode" -version = "1.6.1" +version = "1.6.2" authors = [ { name="Minecraftchest1", email="me@minec1.us" }, ] diff --git a/src/dnscode/dnscode.py b/src/dnscode/dnscode.py index c3c6abf..75da42b 100644 --- a/src/dnscode/dnscode.py +++ b/src/dnscode/dnscode.py @@ -114,7 +114,7 @@ class NS(Record): self.rtype = 'NS' self.name = name self.ttl = ttl - self.host = target + self.host = host self.data = host @dataclass