diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-09-29 00:34:55 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-09-29 00:34:55 +0900 |
commit | d6ae5144259901a2720d4a8f04b7bd0f230dfe34 (patch) | |
tree | 9624ab94587ff00f282447b947690572a10034da /sphinx/ext/autodoc.py | |
parent | 984874fc202042ea63f2bec2c704227e32ae12c6 (diff) | |
download | sphinx-git-d6ae5144259901a2720d4a8f04b7bd0f230dfe34.tar.gz |
Update message
Diffstat (limited to 'sphinx/ext/autodoc.py')
-rw-r--r-- | sphinx/ext/autodoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/autodoc.py b/sphinx/ext/autodoc.py index a0480341c..769f8cc9a 100644 --- a/sphinx/ext/autodoc.py +++ b/sphinx/ext/autodoc.py @@ -1281,7 +1281,7 @@ class ClassDocumenter(DocstringSignatureMixin, ModuleLevelDocumenter): u':class:`%s`' % b.__name__ or u':class:`%s.%s`' % (b.__module__, b.__name__) for b in self.object.__bases__] - self.add_line(_(u' Bases: %s') % ', '.join(bases), + self.add_line(u' ' + _(u'Bases: %s') % ', '.join(bases), sourcename) def get_doc(self, encoding=None, ignore=1): |