| Issue 2: | _atomise_link doesn't work if link is a dict. | |
| 1 person starred this issue and may be notified of changes. | Back to list |
if the link is a dict, the dict type is returned. It should return the link.
--- feedformatter.py~ 2009-10-09 00:38:00.000000000 +0200
+++ feedformatter.py 2009-10-09 01:17:41.000000000 +0200
@@ -182,7 +182,7 @@
def _atomise_link(link):
if type(link) is dict:
- return dict
+ return link
else:
return {"href" : link}
May 7, 2011
Project Member
#1
michael5...@gmail.com
Status:
Fixed
|