From a15ae96616e11edb17f5c7cd47d529dfd0b2f298 Mon Sep 17 00:00:00 2001 From: Johnny Robeson Date: Mon, 4 Jul 2016 02:48:54 -0400 Subject: [PATCH] add a missing text_string in play plugin I don't think wanna send the cli args as bytes to the logger --- beetsplug/play.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/play.py b/beetsplug/play.py index 409ac46f9..7d5b4c227 100644 --- a/beetsplug/play.py +++ b/beetsplug/play.py @@ -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: