~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to cronscripts/rosetta-branches.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:
14
14
__metaclass__ = type
15
15
 
16
16
import _pythonpath
 
17
 
17
18
from zope.component import getUtility
18
19
 
19
 
from canonical.config import config
 
20
from lp.code.interfaces.branchjob import IRosettaUploadJobSource
20
21
from lp.codehosting.vfs.branchfs import get_ro_server
 
22
from lp.services.config import config
21
23
from lp.services.job.runner import JobRunner
22
 
from lp.code.interfaces.branchjob import IRosettaUploadJobSource
23
24
from lp.services.scripts.base import LaunchpadCronScript
24
25
from lp.services.webapp.errorlog import globalErrorUtility
25
26