Comment 3 for bug 184594

Revision history for this message
Markus Korn (thekorn) wrote :

This patch against py-lp-bugs .main rev57 fixes this issue,
needs some testing before committing to .main.

Test case:
In [1]: import launchpadbugs.connector as Connector

In [2]: Bug = Connector.ConnectBug()

In [3]: Bug.authentication = {"password": "******", "email":"<email address hidden>"}

In [4]: b = Bug(url="https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/141472")

In [5]: print b.infotable
[[Compiz (remote): Confirmed/Unknown],[compiz (Ubuntu): New/Undecided]]

If you are member of 'launchpad-beta-testers' and did not apply the patch, the last statement would raise the Error in the description of this bugreport.

Markus