summaryrefslogtreecommitdiff
path: root/sphinx/ext/autodoc.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-02-18 00:06:24 +0100
committerGeorg Brandl <georg@python.org>2009-02-18 00:06:24 +0100
commit4b2864e87cf545d755693663b6f02f2cfe9ae85d (patch)
tree9de862e3d1748a2e42c7c082fa021b5ee405d45a /sphinx/ext/autodoc.py
parentb42e9303f466bd39873ebbe32b26c472bc52bde4 (diff)
downloadsphinx-git-4b2864e87cf545d755693663b6f02f2cfe9ae85d.tar.gz
Add a test for a new documenter.
Diffstat (limited to 'sphinx/ext/autodoc.py')
-rw-r--r--sphinx/ext/autodoc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/autodoc.py b/sphinx/ext/autodoc.py
index 585b0e25b..82e16e044 100644
--- a/sphinx/ext/autodoc.py
+++ b/sphinx/ext/autodoc.py
@@ -404,7 +404,7 @@ class Documenter(object):
try:
ret.append((mname, self.get_attr(self.object, mname)))
except AttributeError:
- self.directive.warn('missing attribute %s in object %s: '
+ self.directive.warn('missing attribute %s in object %s'
% (mname, self.fullname))
return False, ret
elif self.options.inherited_members: