diff options
author | Łukasz Langa <lukasz@langa.pl> | 2011-01-08 18:37:49 +0100 |
---|---|---|
committer | Łukasz Langa <lukasz@langa.pl> | 2011-01-08 18:37:49 +0100 |
commit | 87dc9b302e4d3e03851b3d94ca2a86000280f99c (patch) | |
tree | 6b2a90ea5c180d1a70a29db30ad620534b9a51ab /sphinx/ext/autodoc.py | |
parent | 79eeffd49253a3259df35d197611cf71991f6603 (diff) | |
download | sphinx-git-87dc9b302e4d3e03851b3d94ca2a86000280f99c.tar.gz |
Removed unnecessary \
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 928a943f3..61b08273a 100644 --- a/sphinx/ext/autodoc.py +++ b/sphinx/ext/autodoc.py @@ -27,7 +27,7 @@ from sphinx.pycode import ModuleAnalyzer, PycodeError from sphinx.application import ExtensionError from sphinx.util.nodes import nested_parse_with_titles from sphinx.util.compat import Directive -from sphinx.util.inspect import (getargspec, isdescriptor, safe_getmembers, \ +from sphinx.util.inspect import (getargspec, isdescriptor, safe_getmembers, safe_getattr) from sphinx.util.pycompat import base_exception, class_types from sphinx.util.docstrings import prepare_docstring |