Comment 3 for bug 193853

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

I started to work on this bug by adding the possibility to add a task related to a project ('Also effects project')
In the attached branch the following code should work:

>>> import launchpadbugs.connector as con
>>> Bug = con.ConnectBug()
>>> Bug.authentication = "/home/markus/.mozilla/firefox/64meom4l.default/cookies.sqlite"
>>> task = Bug.NewTask("project", "bzr-fs")
>>> b = Bug(214490)
>>> b.infotable.addTask(task)
>>> b.commit()

the workflow for adding bugwatches and distribution/packages-tasks will be similar.

What to you think about the workflow?

Markus