[flickrpy] r50 committed - Hopefully fixed issue 18. The _load_properties function referred to ph...

0 views
Skip to first unread message

flic...@googlecode.com

unread,
Feb 3, 2011, 2:15:03 PM2/3/11
to flickrp...@googlegroups.com
Revision: 50
Author: vacariu.v
Date: Thu Feb 3 11:14:29 2011
Log: Hopefully fixed issue 18. The _load_properties function referred to
photo, which doesn't exist. It should've referred to group.
http://code.google.com/p/flickrpy/source/detail?r=50

Modified:
/trunk/flickr.py

=======================================
--- /trunk/flickr.py Thu Feb 3 11:07:09 2011
+++ /trunk/flickr.py Thu Feb 3 11:14:29 2011
@@ -619,12 +619,11 @@

group = data.rsp.group

- self.__name = photo.name.text
- self.__members = photo.members.text
- self.__online = photo.online.text
- self.__privacy = photo.privacy.text
- self.__chatid = photo.chatid.text
- self.__chatcount = photo.chatcount.text
+ self.__name = group.name.text
+ self.__description = group.description.text
+ self.__members = group.members.text
+ self.__privacy = group.privacy.text
+

def __str__(self):
return '<Flickr Group %s>' % self.id

Reply all
Reply to author
Forward
0 new messages