diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-12-25 01:03:06 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2017-01-02 12:59:51 +0900 |
commit | e755a8c004291faa27e511205d2c365e8461bf9f (patch) | |
tree | 3d68dd63736e1273f115b315cce981f565a3586a /sphinx/ext/viewcode.py | |
parent | 6bf201533a372fee2503ea4b79858752ce41b612 (diff) | |
download | sphinx-git-e755a8c004291faa27e511205d2c365e8461bf9f.tar.gz |
Use loggers
Diffstat (limited to 'sphinx/ext/viewcode.py')
-rw-r--r-- | sphinx/ext/viewcode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/viewcode.py b/sphinx/ext/viewcode.py index a4f93c144..95aabd6c2 100644 --- a/sphinx/ext/viewcode.py +++ b/sphinx/ext/viewcode.py @@ -39,7 +39,7 @@ def _get_full_modname(app, modname, attribute): except AttributeError: # sphinx.ext.viewcode can't follow class instance attribute # then AttributeError logging output only verbose mode. - logger.verbose('Didn\'t find %s in %s' % (attribute, modname)) + logger.verbose('Didn\'t find %s in %s', attribute, modname) return None except Exception as e: # sphinx.ext.viewcode follow python domain directives. |