~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to scripts/process-death-row.py

  • Committer: Curtis Hovey
  • Date: 2011-08-21 14:21:06 UTC
  • mto: This revision was merged to the branch mainline in revision 13745.
  • Revision ID: curtis.hovey@canonical.com-20110821142106-x93hajd6iguma8gx
Update test that was enforcing bad grammar.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python -S
2
2
#
3
 
# Copyright 2009-2011 Canonical Ltd.  This software is licensed under the
 
3
# Copyright 2009 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
# Stop lint warning about relative import:
25
25
"""
26
26
import _pythonpath
27
27
 
 
28
# This is needed to prevent circular imports until we get rid of the
 
29
# abomination that is known as
 
30
# canonical/launchpad/interfaces/__init.py__ that imports the whole
 
31
# freaking world.
 
32
import canonical.launchpad.interfaces
 
33
 
 
34
from canonical.config import config
28
35
from lp.soyuz.scripts.processdeathrow import DeathRowProcessor
29
36
 
30
37
 
31
38
if __name__ == "__main__":
32
39
    script = DeathRowProcessor(
33
 
        'process-death-row', dbuser='process_death_row')
 
40
        'process-death-row', dbuser=config.archivepublisher.dbuser)
34
41
    script.lock_and_run()
 
42