~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Curtis Hovey
  • Date: 2011-12-29 05:29:36 UTC
  • mto: This revision was merged to the branch mainline in revision 14606.
  • Revision ID: curtis.hovey@canonical.com-20111229052936-c261pibg1p6ze6m4
Moved canonical.config to lp.services.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
from zope.component import getUtility
25
25
from zope.interface import implements
26
26
 
 
27
from lp.services.config import config
 
28
from canonical.database.sqlbase import (
 
29
    cursor,
 
30
    SQLBase,
 
31
    sqlvalues,
 
32
    )
 
33
from lp.services.helpers import ensure_unicode
 
34
from lp.services.webapp.interfaces import (
 
35
    DEFAULT_FLAVOR,
 
36
    IStoreSelector,
 
37
    MAIN_STORE,
 
38
    )
27
39
from lp.app.errors import NotFoundError
28
40
from lp.registry.interfaces.distribution import (
29
41
    IDistribution,
39
51
    )
40
52
from lp.registry.interfaces.projectgroup import IProjectGroupSet
41
53
from lp.registry.model.featuredproject import FeaturedProject
42
 
from lp.services.config import config
43
 
from lp.services.database.sqlbase import (
44
 
    cursor,
45
 
    SQLBase,
46
 
    sqlvalues,
47
 
    )
48
 
from lp.services.helpers import ensure_unicode
49
 
from lp.services.webapp.interfaces import (
50
 
    DEFAULT_FLAVOR,
51
 
    IStoreSelector,
52
 
    MAIN_STORE,
53
 
    )
54
54
 
55
55
 
56
56
__all__ = [