mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 00:24:25 +01:00
Missed a few unicode strings
This commit is contained in:
parent
ce77816ad9
commit
fc4d65a387
3 changed files with 5 additions and 5 deletions
|
|
@ -875,7 +875,7 @@ class CommonOptionsParser(optparse.OptionParser):
|
|||
By default this affects both items and albums. If add_album_option()
|
||||
is used then the target will be autodetected.
|
||||
|
||||
Sets the format property to u'$path' on the options extracted from the
|
||||
Sets the format property to '$path' on the options extracted from the
|
||||
CLI.
|
||||
"""
|
||||
path = optparse.Option(*flags, nargs=0, action='callback',
|
||||
|
|
|
|||
|
|
@ -94,9 +94,9 @@ Artist index:
|
|||
# The content for the base conf.py generated.
|
||||
REST_CONF_TEMPLATE = '''# -*- coding: utf-8 -*-
|
||||
master_doc = 'index'
|
||||
project = u'Lyrics'
|
||||
copyright = u'none'
|
||||
author = u'Various Authors'
|
||||
project = 'Lyrics'
|
||||
copyright = 'none'
|
||||
author = 'Various Authors'
|
||||
latex_documents = [
|
||||
(master_doc, 'Lyrics.tex', project,
|
||||
author, 'manual'),
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ VERSION_LOCS = [
|
|||
[
|
||||
(
|
||||
r'__version__\s*=\s*u[\'"]([0-9\.]+)[\'"]',
|
||||
"__version__ = u'{version}'",
|
||||
"__version__ = '{version}'",
|
||||
)
|
||||
]
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in a new issue