~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/blueprints/browser/sprint.py

  • Committer: Robert Collins
  • Date: 2011-05-22 21:10:25 UTC
  • mto: This revision was merged to the branch mainline in revision 13100.
  • Revision ID: robert@canonical.com-20110522211025-n29dt8j30dqr23nz
Bah. My kingdom for a statically checked language.

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
    IRegistryCollectionNavigationMenu,
77
77
    RegistryCollectionActionMenuBase,
78
78
    )
 
79
from lp.registry.interfaces.person import IPersonSet
79
80
from lp.services.database.bulk import load_referencing
80
81
from lp.services.propertycache import cachedproperty
81
82
 
473
474
        people = defaultdict(dict)
474
475
        # Attendees per specification
475
476
        for subscription in load_referencing(SpecificationSubscription,
476
 
                model_specs, 'specificationID'):
 
477
                model_specs, ['specificationID']):
477
478
            if subscription.personID not in attendee_set:
478
479
                continue
479
480
            people[subscription.specificationID][subscription.personID] = \