Skip to content

Commit

Permalink
Fix line ending (GH-12531)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhettinger committed Mar 25, 2019
1 parent 62be338 commit 9dcc095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/pydoc.py
Expand Up @@ -886,7 +886,7 @@ def spilldata(msg, attrs, predicate):
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')
Expand Down

0 comments on commit 9dcc095

Please sign in to comment.