Skip to content

Commit 9dcc095

Browse files
authored
Fix line ending (GH-12531)
1 parent 62be338 commit 9dcc095

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/pydoc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ def spilldata(msg, attrs, predicate):
886886
lambda t: t[1] == 'class method')
887887
attrs = spill('Static methods %s' % tag, attrs,
888888
lambda t: t[1] == 'static method')
889-
attrs = spilldescriptors("Readonly properties %s:\n" % tag, attrs,
889+
attrs = spilldescriptors("Readonly properties %s" % tag, attrs,
890890
lambda t: t[1] == 'readonly property')
891891
attrs = spilldescriptors('Data descriptors %s' % tag, attrs,
892892
lambda t: t[1] == 'data descriptor')

0 commit comments

Comments
 (0)