User can't asssign milestone to launchpad bug
Bug #1240379 reported by
Timur Nurlygayanov
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
python-launchpadlib (Ubuntu) |
New
|
Undecided
|
Unassigned |
Bug Description
Now launchpadlib has no any methods to assign milestone for bugs (but we can do this via web interface)
it is important issue to manage bugs via launchpadlib python library.
To post a comment you must log in.
I'm sure this can probably be closed, but in case this helps anyone that comes across this, I am able to assign milestones just fine with this:
new_milestone = project. getMilestone( name='milestone _name')
bug.milestone = new_milestone
bug.lp_save()