~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to cronscripts/update-bugzilla-remote-components.py

  • Committer: Danilo Segan
  • Date: 2011-04-22 14:02:29 UTC
  • mto: This revision was merged to the branch mainline in revision 12910.
  • Revision ID: danilo@canonical.com-20110422140229-zhq4d4c2k8jpglhf
Ignore hidden files when building combined JS file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python -S
2
2
#
3
 
# Copyright 2010-2011 Canonical Ltd.  This software is licensed under the
 
3
# Copyright 2010 Canonical Ltd.  This software is licensed under the
4
4
# GNU Affero General Public License version 3 (see the file LICENSE).
5
5
 
6
6
# pylint: disable-msg=W0403
8
8
 
9
9
import time
10
10
 
11
 
from lp.bugs.scripts.bzremotecomponentfinder import (
 
11
from canonical.config import config
 
12
from lp.services.scripts.base import LaunchpadCronScript
 
13
from canonical.launchpad.scripts.bzremotecomponentfinder import (
12
14
    BugzillaRemoteComponentFinder,
13
15
    )
14
 
from lp.services.config import config
15
 
from lp.services.scripts.base import LaunchpadCronScript
16
16
 
17
17
 
18
18
class UpdateRemoteComponentsFromBugzilla(LaunchpadCronScript):