~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-06 12:11:50 UTC
  • mfrom: (14625.2.7 gina-dsc-binaries)
  • Revision ID: launchpad@pqm.canonical.com-20120106121150-e0bucmb5qeyytnn9
[r=wgrant][bug=911943] Fix SourcePackageReleaseDscBinariesUpdater:
        round chunk_size to int (and document this issue).

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
 
    )
24
19
from lp.registry.interfaces.gpg import (
25
20
    GPGKeyAlgorithm,
26
21
    IGPGKey,
27
22
    IGPGKeySet,
28
23
    )
 
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