mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
play: Log exception from os call more accurately
Depending on raw or not, we do not necessarily play a 'playlist'. Use 'query' generically instead.
This commit is contained in:
parent
f685a59e71
commit
775ac4ed83
1 changed files with 1 additions and 1 deletions
|
|
@ -129,7 +129,7 @@ class PlayPlugin(BeetsPlugin):
|
|||
try:
|
||||
util.interactive_open(open_args, command_str)
|
||||
except OSError as exc:
|
||||
raise ui.UserError("Could not play the music playlist: "
|
||||
raise ui.UserError("Could not play the query: "
|
||||
"{0}".format(exc))
|
||||
|
||||
def _create_tmp_playlist(self, paths_list):
|
||||
|
|
|
|||
Loading…
Reference in a new issue