lsantos2000 / feedjack

Automatically exported from code.google.com/p/feedjack
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

feedjack update infinite loop #15

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago

Original comment by petar.ma...@gmail.com on 24 Oct 2006 at 2:55

GoogleCodeExporter commented 8 years ago
Fixed in [6]

Original comment by petar.ma...@gmail.com on 24 Oct 2006 at 3:45