Use + instead of space (fixes an Iceweasel browser issue)

This commit is contained in:
blitzmann
2015-10-30 21:09:06 -04:00
parent 649b99d7bd
commit 24f770aa7b

View File

@@ -218,7 +218,7 @@ class EVE(APIConnection):
grant_type,
self.redirect_uri,
self.client_id,
"&scope=%s" % ' '.join(s) if scopes else '',
"&scope=%s" % '+'.join(s) if scopes else '',
"&state=%s" % state if state else ''
)