diff options
author | Georg Brandl <georg@python.org> | 2015-03-08 16:55:34 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2015-03-08 16:55:34 +0100 |
commit | d0efb42a4179f331dd67d4d301c81b2c01d8e386 (patch) | |
tree | 172f81f7d18e2e6fb28c0ead629e10a8443ec6ee /sphinx/util/websupport.py | |
parent | 2a6b9d58088a186884884d8f30542df8963de075 (diff) | |
download | sphinx-git-d0efb42a4179f331dd67d4d301c81b2c01d8e386.tar.gz |
util: pep8 fixes
Diffstat (limited to 'sphinx/util/websupport.py')
-rw-r--r-- | sphinx/util/websupport.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/util/websupport.py b/sphinx/util/websupport.py index 2bb23fa81..6c9cfeb9a 100644 --- a/sphinx/util/websupport.py +++ b/sphinx/util/websupport.py @@ -9,5 +9,5 @@ def is_commentable(node): - #return node.__class__.__name__ in ('paragraph', 'literal_block') + # return node.__class__.__name__ in ('paragraph', 'literal_block') return node.__class__.__name__ == 'paragraph' |