In the "def get_tags(entry, tagdict)" function in feedjack_update.py file
in Feedjack 0.9.7, the lines 51-52:
while ' ' in tagname:
tagname.replace(' ', ' ')
should instead read:
while ' ' in tagname:
tagname = tagname.replace(' ', ' ')
otherwise any tagname string that contains ' ' will cause an infinite loop.
Original issue reported on code.google.com by bamul...@gmail.com on 24 Oct 2006 at 2:01
Original issue reported on code.google.com by
bamul...@gmail.com
on 24 Oct 2006 at 2:01