Fixes error when scope is not set

This commit is contained in:
josduj 2017-01-18 10:26:14 +01:00 committed by GitHub
parent f638b0c59b
commit 4f15a6f07e
1 changed files with 4 additions and 2 deletions

View File

@ -149,8 +149,10 @@ class SpotifyOAuth(object):
pass
def _is_scope_subset(self, needle_scope, haystack_scope):
needle_scope = set(needle_scope.split())
haystack_scope = set(haystack_scope.split())
if needle_scope:
needle_scope = set(needle_scope.split())
if haystack_scope:
haystack_scope = set(haystack_scope.split())
return needle_scope <= haystack_scope