Remove Unicode marker before strings
All strings are Unicode in Python 3. No need for u'€', just use '€'.
This commit is contained in:
committed by
Adrien Vergé
parent
5fbf44c203
commit
5b21a3d9ea
@@ -38,7 +38,7 @@ htmlhelp_basename = 'yamllintdoc'
|
||||
# One entry per manual page. List of tuples
|
||||
# (source start file, name, description, authors, manual section).
|
||||
man_pages = [
|
||||
('index', 'yamllint', 'Linter for YAML files', [u'Adrien Vergé'], 1)
|
||||
('index', 'yamllint', 'Linter for YAML files', ['Adrien Vergé'], 1)
|
||||
]
|
||||
|
||||
# -- Build with sphinx automodule without needing to install third-party libs
|
||||
|
||||
Reference in New Issue
Block a user