~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/model/distroseriessourcepackagerelease.py

  • Committer: Curtis Hovey
  • Date: 2011-08-21 14:21:06 UTC
  • mto: This revision was merged to the branch mainline in revision 13745.
  • Revision ID: curtis.hovey@canonical.com-20110821142106-x93hajd6iguma8gx
Update test that was enforcing bad grammar.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2009-2011 Canonical Ltd.  This software is licensed under the
 
1
# Copyright 2009 Canonical Ltd.  This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
3
 
4
4
# pylint: disable-msg=E0611,W0212
11
11
    'DistroSeriesSourcePackageRelease',
12
12
    ]
13
13
 
 
14
from lazr.delegates import delegates
14
15
from operator import itemgetter
15
 
 
16
 
from lazr.delegates import delegates
17
16
from storm.expr import (
18
17
    And,
19
18
    Desc,
24
23
from zope.security.proxy import removeSecurityProxy
25
24
 
26
25
from canonical.database.sqlbase import sqlvalues
 
26
from canonical.launchpad.components.decoratedresultset import (
 
27
    DecoratedResultSet,
 
28
    )
27
29
from lp.registry.interfaces.distroseries import IDistroSeries
28
 
from lp.services.database.decoratedresultset import DecoratedResultSet
29
30
from lp.soyuz.enums import PackagePublishingStatus
30
31
from lp.soyuz.interfaces.distroseriessourcepackagerelease import (
31
32
    IDistroSeriesSourcePackageRelease,