Comment 4 for bug 239684

Revision history for this message
Stephan RĂ¼gamer (sruegamer) wrote :

hi Markus,

I encountered a bug:

The counter is not correct...

First:

e.g. http://launchpad.net/~shermann/+assignedbugs -> 8 bugs are listed
#!/usr/bin/python

import launchpadbugs.connector as Connector
import launchpadbugs.html_bug

BugList = Connector.ConnectBugList()
Bug = Connector.ConnectBug(method="Text")
l=BugList("https://edge.launchpad.net/~shermann/+assignedbugs")
for i in l.bugs:
        b=Bug(i)
        print "%8d | %80s | %40s" % (i.bugnumber , i.summary, b.tags)

=> brings you 7 bugs only

and the progress counter will give you 6 ;)

I think there are two bugs here...and I don't know if it's in the very same http_connection.py :)

\sh