1
0
mirror of https://github.com/django/django.git synced 2024-12-22 17:16:24 +00:00

Made versionadded/versionchanged annotations without a content end with ".".

Regression in d2afa5eb23.
This commit is contained in:
Sergey Fedoseev 2019-11-21 13:03:18 +05:00 committed by Mariusz Felisiak
parent f5ebdfce5c
commit 5032556483

View File

@ -153,7 +153,7 @@ class DjangoHTMLTranslator(HTMLTranslator):
if version_text:
title = "%s%s" % (
version_text % node['version'],
":" if node else "."
":" if len(node) else "."
)
self.body.append('<span class="title">%s</span> ' % title)