~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/vocabularies.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-09-13 10:21:35 UTC
  • mfrom: (13931.2.1 no-more-lazr-utils)
  • Revision ID: launchpad@pqm.canonical.com-20110913102135-oitsq4e62bcmvszn
[r=wgrant][no-qa] Drown canonical.lazr.utils.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
 
63
63
from operator import attrgetter
64
64
 
 
65
from lazr.restful.interfaces import IReference
 
66
from lazr.restful.utils import safe_hasattr
65
67
from sqlobject import (
66
68
    AND,
67
69
    CONTAINSSTRING,
95
97
    removeSecurityProxy,
96
98
    )
97
99
 
98
 
from lazr.restful.interfaces import IReference
99
 
 
100
100
from canonical.database.sqlbase import (
101
101
    quote,
102
102
    quote_like,
131
131
    SQLObjectVocabularyBase,
132
132
    VocabularyFilter,
133
133
    )
134
 
from canonical.lazr.utils import safe_hasattr
135
134
from lp.app.browser.tales import DateTimeFormatterAPI
136
135
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
137
136
from lp.blueprints.interfaces.specification import ISpecification