diff options
author | Georg Brandl <georg@python.org> | 2009-02-18 00:06:24 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-02-18 00:06:24 +0100 |
commit | 4b2864e87cf545d755693663b6f02f2cfe9ae85d (patch) | |
tree | 9de862e3d1748a2e42c7c082fa021b5ee405d45a /sphinx/ext/autodoc.py | |
parent | b42e9303f466bd39873ebbe32b26c472bc52bde4 (diff) | |
download | sphinx-git-4b2864e87cf545d755693663b6f02f2cfe9ae85d.tar.gz |
Add a test for a new documenter.
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 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: |