~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/sanitize-db.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-06-10 16:28:08 UTC
  • mfrom: (9550.17.34 sanitize-db)
  • Revision ID: launchpad@pqm.canonical.com-20110610162808-e3y6aibkqxvh7v7l
[r=stub][no-qa] Remove sanitizedb

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python -S
2
 
# Copyright 2009 Canonical Ltd.  This software is licensed under the
3
 
# GNU Affero General Public License version 3 (see the file LICENSE).
4
 
 
5
 
"""Scrub a Launchpad database of private data."""
6
 
 
7
 
__metaclass__ = type
8
 
 
9
 
# pylint: disable-msg=W0403
10
 
import _pythonpath
11
 
 
12
 
from lp.scripts.utilities.sanitizedb import SanitizeDb
13
 
 
14
 
if __name__ == '__main__':
15
 
    SanitizeDb().lock_and_run()