mirror of
https://github.com/beetbox/beets.git
synced 2025-12-11 11:07:31 +01:00
Template strings must always be unicode (#2188)
This seems to be half the problem.
This commit is contained in:
parent
7a2bdf502f
commit
139d22fe9f
1 changed files with 1 additions and 1 deletions
|
|
@ -837,7 +837,7 @@ class CommonOptionsParser(optparse.OptionParser, object):
|
|||
"""
|
||||
path = optparse.Option(*flags, nargs=0, action='callback',
|
||||
callback=self._set_format,
|
||||
callback_kwargs={'fmt': '$path',
|
||||
callback_kwargs={'fmt': u'$path',
|
||||
'store_true': True},
|
||||
help=u'print paths for matched items or albums')
|
||||
self.add_option(path)
|
||||
|
|
|
|||
Loading…
Reference in a new issue