Rename scope to playlist-modify-public

Spotify's Web API has renamed the `playlist-modify` scope to `playlist-modify-public` to better describe what it allows. Even though the old one will be supported for some time, the new one is the preferred way to go.
This commit is contained in:
José Manuel Pérez 2014-07-21 13:02:01 +02:00
parent 61baf982f4
commit 2827591b9d
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ else:
print "Usage: %s username playlist_id track_id ..." % (sys.argv[0],)
sys.exit()
scope = 'playlist-modify'
scope = 'playlist-modify-public'
token = util.prompt_for_user_token(username, scope)
if token: