Fix line ending (GH-12531)

This commit is contained in:
Raymond Hettinger 2019-03-25 00:23:39 -07:00 committed by GitHub
parent 62be33870e
commit 9dcc095f45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -886,7 +886,7 @@ class HTMLDoc(Doc):
lambda t: t[1] == 'class method') lambda t: t[1] == 'class method')
attrs = spill('Static methods %s' % tag, attrs, attrs = spill('Static methods %s' % tag, attrs,
lambda t: t[1] == 'static method') 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') lambda t: t[1] == 'readonly property')
attrs = spilldescriptors('Data descriptors %s' % tag, attrs, attrs = spilldescriptors('Data descriptors %s' % tag, attrs,
lambda t: t[1] == 'data descriptor') lambda t: t[1] == 'data descriptor')