mirror of
https://github.com/beetbox/beets.git
synced 2026-01-20 15:14:13 +01:00
add a missing text_string in play plugin
I don't think wanna send the cli args as bytes to the logger
This commit is contained in:
parent
00bff81756
commit
a15ae96616
1 changed files with 1 additions and 1 deletions
|
|
@ -138,7 +138,7 @@ class PlayPlugin(BeetsPlugin):
|
|||
open_args = [self._create_tmp_playlist(paths)]
|
||||
|
||||
self._log.debug(u'executing command: {} {}', command_str,
|
||||
b' '.join(open_args))
|
||||
util.text_string(b' '.join(open_args)))
|
||||
try:
|
||||
util.interactive_open(open_args, command_str)
|
||||
except OSError as exc:
|
||||
|
|
|
|||
Loading…
Reference in a new issue