From 9e04e0a27b60a35f62d751d0c8c1a2b6f16c26c6 Mon Sep 17 00:00:00 2001 From: Joshua Barrass Date: Tue, 11 Aug 2020 00:54:35 +0100 Subject: [PATCH] Quotes around the deadbeef string to prevent parsing errors by deadbeef --- bumblebee_status/modules/contrib/deadbeef.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumblebee_status/modules/contrib/deadbeef.py b/bumblebee_status/modules/contrib/deadbeef.py index 327972d..948fdc5 100644 --- a/bumblebee_status/modules/contrib/deadbeef.py +++ b/bumblebee_status/modules/contrib/deadbeef.py @@ -114,7 +114,7 @@ class Module(core.module.Module): self._song = "" return ## perform the actual query -- these can be much more sophisticated - data = util.cli.execute(self.now_playing_tf + self._tf_format) + data = util.cli.execute(self.now_playing_tf + '"'+self._tf_format+'"') self._song = data def update_standard(self, widgets):