diff options
| author | Bob Halley <halley@dnspython.org> | 2020-06-26 06:40:40 -0700 |
|---|---|---|
| committer | Bob Halley <halley@dnspython.org> | 2020-06-26 06:40:40 -0700 |
| commit | cf1fa1604415694dc89c581047aebf5828659786 (patch) | |
| tree | 4be11cc782d3a77ed87ee27371cea991c66906e5 | |
| parent | 39d50fd7b63425a358bf10f886399a72b8347d02 (diff) | |
| download | dnspython-cf1fa1604415694dc89c581047aebf5828659786.tar.gz | |
fix cut-and-paste error
| -rw-r--r-- | dns/message.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/dns/message.py b/dns/message.py index 25a8102..e40e043 100644 --- a/dns/message.py +++ b/dns/message.py @@ -189,9 +189,6 @@ class Message: s.write('payload %d\n' % self.payload) for opt in self.options: s.write('option %s\n' % opt.to_text()) - - s.write(rrset.to_text(origin, relativize, **kw)) - s.write('\n') for (name, which) in self._section_enum.__members__.items(): s.write(f';{name}\n') for rrset in self.section_from_number(which): |
