~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/translations/interfaces/pofilestatsjob.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-11-22 14:12:40 UTC
  • mfrom: (14193.3.12 bug-877195-code)
  • Revision ID: launchpad@pqm.canonical.com-20111122141240-1x8vopdtuy5wl4pe
[r=jcsackett][bug=877195] [r=jcsackett] move POFile statistics update
        into a job

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2010 Canonical Ltd. This software is licensed under the
 
2
# GNU Affero General Public License version 3 (see the file LICENSE).
 
3
 
 
4
# pylint: disable-msg=E0213
 
5
 
 
6
__metaclass__ = type
 
7
 
 
8
__all__ = [
 
9
    'IPOFileStatsJobSource',
 
10
    ]
 
11
 
 
12
from lp.services.job.interfaces.job import IJobSource
 
13
 
 
14
 
 
15
class IPOFileStatsJobSource(IJobSource):
 
16
    """A source for jobs to update POFile statistics."""