aboutsummaryrefslogtreecommitdiff
path: root/modules/spotify.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-01-29 22:36:54 +0000
committerGravatar jesopo2019-01-29 22:36:54 +0000
commitaf7a765547654d944c46756e8ac2003242362aab (patch)
treefdabb98531d40f94bea41a20011ab95f1583e398 /modules/spotify.py
parentSpotify now requires access tokens to use it's API (spotify.py) (diff)
signature
Forgot to import base64 (spotify.py)
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 f8a0cad4..14c0482c 100644
--- a/modules/spotify.py
+++ b/modules/spotify.py
@@ -1,7 +1,7 @@
#--require-config spotify-client-id
#--require-config spotify-client-secret
-import json
+import base64, json
from src import ModuleManager, utils
URL_SEARCH = "https://api.spotify.com/v1/search"