~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to cronscripts/update-stats.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-09-27 13:10:47 UTC
  • mfrom: (14027.3.8 megalint-2)
  • Revision ID: launchpad@pqm.canonical.com-20110927131047-hadx9vzjec3mowue
[r=jtv][no-qa] Mega-lint cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python -S
2
2
#
3
 
# Copyright 2009 Canonical Ltd.  This software is licensed under the
 
3
# Copyright 2009-2011 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=C0103,W0403
8
8
# This script updates the cached stats in the system
9
9
 
10
10
import _pythonpath
11
 
 
12
11
from zope.component import getUtility
 
12
 
 
13
from canonical.config import config
13
14
from canonical.launchpad.interfaces.launchpadstatistic import (
14
15
    ILaunchpadStatisticSet,
15
16
    )
16
 
from lp.services.scripts.base import LaunchpadCronScript
17
17
from lp.registry.interfaces.distribution import IDistributionSet
18
18
from lp.registry.interfaces.person import IPersonSet
19
 
from canonical.config import config
 
19
from lp.services.scripts.base import LaunchpadCronScript
20
20
 
21
21
 
22
22
class StatUpdater(LaunchpadCronScript):