~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to cronscripts/generate-extra-overrides.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-08-03 11:23:34 UTC
  • mfrom: (13457.6.16 upgrade-stderr)
  • Revision ID: launchpad@pqm.canonical.com-20110803112334-acnupsa7jmzmdeet
[r=stevenk][bug=819751] Fix the implementation of several methods in
 LoggingUIFactory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python -S
2
 
#
3
 
# Copyright 2011 Canonical Ltd.  This software is licensed under the
4
 
# GNU Affero General Public License version 3 (see the file LICENSE).
5
 
 
6
 
"""Generate extra overrides using Germinate."""
7
 
 
8
 
import _pythonpath
9
 
 
10
 
from lp.archivepublisher.scripts.generate_extra_overrides import (
11
 
    GenerateExtraOverrides,
12
 
    )
13
 
 
14
 
 
15
 
if __name__ == '__main__':
16
 
    script = GenerateExtraOverrides(
17
 
        "generate-extra-overrides", dbuser='generate_extra_overrides')
18
 
    script.lock_and_run()