From 7a5ae9235e0a02623ef96d626e85cd7682bed67d Mon Sep 17 00:00:00 2001 From: Anna Date: Tue, 18 May 2010 12:29:07 -0400 Subject: [PATCH] Fixed error with profile images in DMs --- apithreads.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apithreads.py b/apithreads.py index 1229728..976df83 100644 --- a/apithreads.py +++ b/apithreads.py @@ -353,7 +353,7 @@ def dms_to_statuses(direct_messages): status.user = User() status.user.screen_name = dm.sender_screen_name status.user.name = dm.sender.name - status.user.profile.image_url = dm.sender.profile_image_url + status.user.profile.image_url = dm.sender.profile.image_url status.created_at = dm.created_at status.text = dm.text statuses.append(status)