summaryrefslogtreecommitdiff
path: root/dns/node.py
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2019-01-08 07:03:46 -0800
committerBob Halley <halley@dnspython.org>2019-01-08 07:03:46 -0800
commitfabbd12061ff428ba7660433345033665b6ebdde (patch)
tree79d5d1d109ac3c786454b5f181273881bd2c49f2 /dns/node.py
parent3c22261405da9c0235112d913362132aef681fb8 (diff)
downloaddnspython-fabbd12061ff428ba7660433345033665b6ebdde.tar.gz
remove the rest of the unicode string prefixes
Diffstat (limited to 'dns/node.py')
-rw-r--r--dns/node.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dns/node.py b/dns/node.py
index 8a7f19f..36e5ffa 100644
--- a/dns/node.py
+++ b/dns/node.py
@@ -49,7 +49,7 @@ class Node(object):
for rds in self.rdatasets:
if len(rds) > 0:
s.write(rds.to_text(name, **kw))
- s.write(u'\n')
+ s.write('\n')
return s.getvalue()[:-1]
def __repr__(self):