~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/profile/profile.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:
35
35
from zope.exceptions.exceptionformatter import format_exception
36
36
from zope.traversing.namespace import view
37
37
 
38
 
from canonical.config import config
 
38
from lp.services.config import config
 
39
from lp.services.features import getFeatureFlag
 
40
from lp.services.profile.mem import (
 
41
    memory,
 
42
    resident,
 
43
    )
39
44
import lp.services.webapp.adapter as da
40
45
from lp.services.webapp.interfaces import (
41
46
    DisallowedStore,
42
47
    IStartRequestEvent,
43
48
    )
44
 
from lp.services.features import getFeatureFlag
45
 
from lp.services.profile.mem import (
46
 
    memory,
47
 
    resident,
48
 
    )
49
49
 
50
50
 
51
51
class ProfilingOops(Exception):