~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to cronscripts/process-job-source-groups.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:
7
7
 
8
8
__metaclass__ = type
9
9
 
10
 
import _pythonpath
11
 
 
12
10
from optparse import IndentedHelpFormatter
13
11
import os
14
12
import subprocess
15
13
import sys
16
14
import textwrap
17
15
 
18
 
from lp.services.config import config
19
 
from lp.services.helpers import english_list
 
16
import _pythonpath
 
17
 
 
18
from canonical.config import config
 
19
from canonical.launchpad.helpers import english_list
20
20
from lp.services.propertycache import cachedproperty
21
21
from lp.services.scripts.base import LaunchpadCronScript
22
22