~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Curtis Hovey
  • Date: 2011-12-18 15:13:07 UTC
  • mto: This revision was merged to the branch mainline in revision 14547.
  • Revision ID: curtis.hovey@canonical.com-20111218151307-sdm2gzobt5tplbe0
Moved badges to lp.app.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
from zope.component import getUtility
17
17
from zope.interface import implements
18
18
 
 
19
from canonical.database.enumcol import EnumCol
 
20
from canonical.database.sqlbase import (
 
21
    SQLBase,
 
22
    sqlvalues,
 
23
    )
19
24
from lp.registry.interfaces.gpg import (
20
25
    GPGKeyAlgorithm,
21
26
    IGPGKey,
22
27
    IGPGKeySet,
23
28
    )
24
 
from lp.services.database.enumcol import EnumCol
25
 
from lp.services.database.sqlbase import (
26
 
    SQLBase,
27
 
    sqlvalues,
28
 
    )
29
29
from lp.services.gpg.interfaces import IGPGHandler
30
30
 
31
31