]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix line ending (GH-12531)
authorRaymond Hettinger <rhettinger@users.noreply.github.com>
Mon, 25 Mar 2019 07:23:39 +0000 (00:23 -0700)
committerGitHub <noreply@github.com>
Mon, 25 Mar 2019 07:23:39 +0000 (00:23 -0700)
Lib/pydoc.py

index 2f570e4dc5def8f39245c1340bffe92cebe3cb67..0cf3d3359624a4242a777f9d3a2a1362d62094c2 100644 (file)
@@ -886,7 +886,7 @@ class HTMLDoc(Doc):
                           lambda t: t[1] == 'class method')
             attrs = spill('Static methods %s' % tag, attrs,
                           lambda t: t[1] == 'static method')
-            attrs = spilldescriptors("Readonly properties %s:\n" % tag, attrs,
+            attrs = spilldescriptors("Readonly properties %s" % tag, attrs,
                                      lambda t: t[1] == 'readonly property')
             attrs = spilldescriptors('Data descriptors %s' % tag, attrs,
                                      lambda t: t[1] == 'data descriptor')