mirror of
https://github.com/django/django.git
synced 2025-08-27 05:54:28 +00:00
Made versionadded/versionchanged annotations without a content end with ".".
Regression in d2afa5eb23
.
This commit is contained in:
parent
f5ebdfce5c
commit
5032556483
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ class DjangoHTMLTranslator(HTMLTranslator):
|
||||||
if version_text:
|
if version_text:
|
||||||
title = "%s%s" % (
|
title = "%s%s" % (
|
||||||
version_text % node['version'],
|
version_text % node['version'],
|
||||||
":" if node else "."
|
":" if len(node) else "."
|
||||||
)
|
)
|
||||||
self.body.append('<span class="title">%s</span> ' % title)
|
self.body.append('<span class="title">%s</span> ' % title)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue