~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to cronscripts/create_merge_proposals.py

  • Committer: William Grant
  • Date: 2012-01-01 03:14:54 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101031454-xhdgl26b1yiqpar9
cronscripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
__metaclass__ = type
11
11
 
12
12
import _pythonpath
 
13
 
13
14
from zope.component import getUtility
14
15
 
 
16
from lp.code.interfaces.branchmergeproposal import (
 
17
    ICreateMergeProposalJobSource,
 
18
    )
15
19
from lp.services.config import config
16
20
from lp.services.job.runner import JobRunner
17
 
from lp.code.interfaces.branchmergeproposal import (
18
 
    ICreateMergeProposalJobSource,)
19
21
from lp.services.scripts.base import LaunchpadCronScript
20
22
from lp.services.webapp.errorlog import globalErrorUtility
21
23