https://github.com/omab/python-social-auth/blob/master/social/backends/oauth.py#L41 ``` python def get_scope(self): """Return list with needed access scope""" return (self.DEFAULT_SCOPE or []) + \ self.setting('SCOPE', []) ``` causes ``` pythontraceback TypeError: can only concatenate list (not "str") to list ``` Fix: ``` python def get_scope(self): """Return list with needed access scope""" return (self.DEFAULT_SCOPE or '') + \ self.setting('SCOPE', '') ```
https://github.com/omab/python-social-auth/blob/master/social/backends/oauth.py#L41
causes
Fix: