I found the solution here but it was buried a bit in the bug comments. If you ever try something like the code below to append a tag to an existing Launchpad bug using launchpadlib, it won’t work work. It fails silently. bug = launchpad.bugs[1] bug.tags.append(‘new-tag’) bug.lp_save() The solution is to do something like this …
Continue reading “Adding tags to a Launchpad bug using launchpadlib”