Comment 7 for bug 381890

Revision history for this message
Julian Edwards (julian-edwards) wrote :

Well it turns out you can already edit displayname and description properties with launchpadlib.

use something like this with launchpadlib:

>>> ppa.description = "my description"
>>> ppa.displayname = "my ppa"
>>> ppa.lp_save()