~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/doc/bug-set-status.txt

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-08-02 04:21:43 UTC
  • mfrom: (13571.2.4 createtask-and-addtask)
  • Revision ID: launchpad@pqm.canonical.com-20110802042143-26jeqxhukor1eg0e
[r=benji][no-qa] Bug.addTask and BugTaskSet.createTask now take an
 IBugTarget directly instead of a target key.

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
    ...     firefox = getUtility(IProductSet).getByName('firefox')
91
91
    ...     firefox_trunk = firefox.getSeries('trunk')
92
92
    ...     ignore = getUtility(IBugTaskSet).createTask(
93
 
    ...         bug, productseries=firefox_trunk, owner=no_priv)
 
93
    ...         bug, no_priv, firefox_trunk)
94
94
 
95
95
    >>> bug = getUtility(IBugSet).get(bug_id)
96
96
    >>> no_priv = getUtility(IPersonSet).getByName('no-priv')