~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/model/person.py

  • Committer: Curtis Hovey
  • Date: 2012-01-06 01:08:55 UTC
  • mto: This revision was merged to the branch mainline in revision 14651.
  • Revision ID: curtis.hovey@canonical.com-20120106010855-nai2on4zkvfie9dl
UseĀ naturalĀ !=.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3593
3593
            And(
3594
3594
                self._teamPrivacyQuery(),
3595
3595
                TeamParticipation.team == Person.id,
3596
 
                Not(Person.teamowner == None),
 
3596
                Person.teamowner != None,
3597
3597
                Person.merged == None))
3598
3598
        return result.order_by(orderby).config(distinct=True)[:limit]
3599
3599