]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
adjust __init__ now that we include it in class description
authorBob Halley <halley@dnspython.org>
Mon, 2 Jan 2017 15:30:39 +0000 (07:30 -0800)
committerBob Halley <halley@dnspython.org>
Mon, 2 Jan 2017 15:30:39 +0000 (07:30 -0800)
dns/name.py

index abff256fda34cf3a438622a68d2bc2bf6f2df131..951488edf024fe0a4f17b6695e7a92cd28e47fc7 100644 (file)
@@ -325,8 +325,7 @@ class Name(object):
     __slots__ = ['labels']
 
     def __init__(self, labels):
-        """Initialize a domain name from a list of labels.
-        *labels* is any iterable whose values are ``text`` or ``binary``.
+        """*labels* is any iterable whose values are ``text`` or ``binary``.
         """
 
         labels = [_maybe_convert_to_binary(x) for x in labels]