getting comments for bugreports with more than 80 comments does not work correctly on edge
Bug #327939 reported by
Markus Korn
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
python-launchpad-bugs |
New
|
Undecided
|
Unassigned |
Bug Description
Recently a new 'feature' was added to edge.launchpad.net which only shows the first 80 comments for a bugreport per default. py-lp-bugs does not know about it, so the maximum of comments parsed by py-lp-bugs is 80.
>>> b = Bug(186382)
>>> len(b.comments)
80
>>> In [13]: b.comments[-1]
<Comment #80 by aquasov on 2008-05-05 16:12:35 UTC>
Markus
To post a comment you must log in.
As a fix I propose adding "?comments=all" to all urls before getting the page. But I need to be sure that this is working on stable, will test it later today.