if one does a pydelicious.get("a", "b", count=3), for example, pydelicious
throws an error, because it
tries to get the list-subset from the enclosing dictionary:
if count != 0: posts = posts[0:count]
since posts is no list but a dict, this obviously doesn't work. the fix is as
follows:
if count != 0: posts["posts"] = posts["posts"][0:count]
Original issue reported on code.google.com by terhec...@gmail.com on 26 Apr 2008 at 1:40
Original issue reported on code.google.com by
terhec...@gmail.com
on 26 Apr 2008 at 1:40