'responsedata' -> 'response.data'
This commit is contained in:
parent
770c28da55
commit
14d28d836b
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ class Actor(object):
|
||||||
if response.code == 200:
|
if response.code == 200:
|
||||||
self.username = response.data["preferredUsername"]
|
self.username = response.data["preferredUsername"]
|
||||||
self.inbox = Inbox(response.data["inbox"])
|
self.inbox = Inbox(response.data["inbox"])
|
||||||
self.outbox = Outbox(responsedata["outbox"])
|
self.outbox = Outbox(response.data["outbox"])
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue