diff options
| author | 2019-01-29 22:36:54 +0000 | |
|---|---|---|
| committer | 2019-01-29 22:36:54 +0000 | |
| commit | af7a765547654d944c46756e8ac2003242362aab (patch) | |
| tree | fdabb98531d40f94bea41a20011ab95f1583e398 /modules/spotify.py | |
| parent | Spotify 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.py | 2 |
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" |
