]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
When initializing an RRset, pass covers to the superclass
authorBob Halley <halley@nominum.com>
Tue, 4 May 2010 14:22:59 +0000 (15:22 +0100)
committerBob Halley <halley@nominum.com>
Tue, 4 May 2010 14:22:59 +0000 (15:22 +0100)
ChangeLog
dns/rrset.py

index 73a66edef68ca86dd362791e1e5029310f9a9d40..5e6106e3bce8277fdd2429f326efb0681e8f17d1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-05-04  Bob Halley  <halley@dnspython.org>
+
+       * dns/rrset.py (RRset.__init__): "covers" was not passed to the
+         superclass __init__().  Thanks to Shanmuga Rajan for reporting
+         the problem.
+
 2010-03-10  Bob Halley  <halley@dnspython.org>
 
        * The TSIG algorithm value was passed to use_tsig() incorrectly
index 7f6c4afed4a0a2f60328e7720df21d0676f345a3..5a66dc6e06bae632345e5cd82f4bd19a15c160c0 100644 (file)
@@ -36,7 +36,7 @@ class RRset(dns.rdataset.Rdataset):
                  deleting=None):
         """Create a new RRset."""
 
-        super(RRset, self).__init__(rdclass, rdtype)
+        super(RRset, self).__init__(rdclass, rdtype, covers)
         self.name = name
         self.deleting = deleting