aboutsummaryrefslogtreecommitdiff
path: root/modules/spotify.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/spotify.py')
-rw-r--r--modules/spotify.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/spotify.py b/modules/spotify.py
index dbe3f7ce..e6d819f6 100644
--- a/modules/spotify.py
+++ b/modules/spotify.py
@@ -37,7 +37,7 @@ class Module(ModuleManager.BaseModule):
token = self._get_token()
page = utils.http.request(URL_SEARCH,
get_params={"type": "track", "limit": 1, "q": event["args"]},
- headers={"Authorization", "Bearer %s" % token},
+ headers={"Authorization": "Bearer %s" % token},
json=True)
if page:
if len(page.data["tracks"]["items"]):