diff options
author | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2022-03-04 15:54:22 +0000 |
---|---|---|
committer | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2022-03-04 15:54:22 +0000 |
commit | e61bd1ea93dcbc0ceaba0c8fbb3312c54efaaa0a (patch) | |
tree | 9a3d67e207c783186d97a8500034c556044c53d5 /docutils/tools/rst2html5.py | |
parent | fb90874a991c64da4340b1f09badbf846ba6152b (diff) | |
download | docutils-e61bd1ea93dcbc0ceaba0c8fbb3312c54efaaa0a.tar.gz |
Ensure at least two spaces before inline comment.
flake 8 rule E261
Exceptions for modules sheduled for removal or with
3rd-party origin and for data collections.
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@9021 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/tools/rst2html5.py')
-rwxr-xr-x | docutils/tools/rst2html5.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docutils/tools/rst2html5.py b/docutils/tools/rst2html5.py index 744b5c751..f745205d5 100755 --- a/docutils/tools/rst2html5.py +++ b/docutils/tools/rst2html5.py @@ -19,7 +19,7 @@ The output is also valid XML. """ try: - import locale # module missing in Jython + import locale # module missing in Jython locale.setlocale(locale.LC_ALL, '') except locale.Error: pass |