Around line #297 if resp.status is not 200: raise MySpaceError('MySpace OAuth API returned an error', resp) return resp.body needs to be changed to if int(resp.status) is not 200: raise MySpaceError('MySpace OAuth API returned an error', resp) return resp.body resp.status will come out...