~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/interfaces/bugtask.py

  • Committer: Brad Crittenden
  • Date: 2010-07-27 19:17:43 UTC
  • mto: (7675.745.73 launchpad)
  • mto: This revision was merged to the branch mainline in revision 11319.
  • Revision ID: bac@canonical.com-20100727191743-3p0dky6ist7q9b6n
Destroy PRIVATE_MEMBERSHIP teams and remove them from the face of the Earth.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
 
58
58
from canonical.launchpad import _
59
59
from canonical.launchpad.fields import (
60
 
    BugField, ParticipatingPersonChoice, ProductNameField, SearchTag,
 
60
    BugField, PersonChoice, ProductNameField, SearchTag,
61
61
    StrippedTextLine, Summary)
62
62
from lp.bugs.interfaces.bugwatch import (
63
63
    IBugWatch, IBugWatchSet, NoBugTrackerFound, UnrecognizedBugTrackerURL)
436
436
    statusexplanation = Text(
437
437
        title=_("Status notes (optional)"), required=False)
438
438
    assignee = exported(
439
 
        ParticipatingPersonChoice(
 
439
        PersonChoice(
440
440
            title=_('Assigned to'), required=False,
441
441
            vocabulary='ValidAssignee',
442
442
            readonly=True))