Skip to content

Commit

Permalink
Merge pull request #633 from Pietro210/parse-quoted-status
Browse files Browse the repository at this point in the history
Parse quoted_status dict to Status object
  • Loading branch information
joshthecoder committed Feb 17, 2016
2 parents dcd1fb7 + e794478 commit ba13fc5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tweepy/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ def parse(cls, api, json):
setattr(status, 'source_url', None)
elif k == 'retweeted_status':
setattr(status, k, Status.parse(api, v))
elif k == 'quoted_status':
setattr(status, k, Status.parse(api, v))
elif k == 'place':
if v is not None:
setattr(status, k, Place.parse(api, v))
Expand Down

0 comments on commit ba13fc5

Please sign in to comment.