~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/archivepublisher/scripts/generate_contents_files.py

  • Committer: William Grant
  • Date: 2011-09-27 04:40:23 UTC
  • mfrom: (7675.1243.1 db-bug-735621)
  • mto: This revision was merged to the branch mainline in revision 14057.
  • Revision ID: william.grant@canonical.com-20110927044023-0c2qf0kkt5sahyt4
Merge jtv's unlanded LaunchpadCronScriptification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
    ReturnCodeReceiver,
28
28
    )
29
29
from lp.services.scripts.base import (
30
 
    LaunchpadScript,
 
30
    LaunchpadCronScript,
31
31
    LaunchpadScriptFailure,
32
32
    )
33
33
from lp.services.utils import file_exists
112
112
    os.rename(old_path, new_path)
113
113
 
114
114
 
115
 
class GenerateContentsFiles(LaunchpadScript):
 
115
class GenerateContentsFiles(LaunchpadCronScript):
116
116
 
117
117
    distribution = None
118
118