~launchpad-pqm/launchpad/devel

10637.3.1 by Guilherme Salgado
Use the default python version instead of a hard-coded version
1
#!/usr/bin/python -S
9550.17.1 by Stuart Bishop
Sketching out implementation
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
9550.17.8 by Stuart Bishop
Lint issues
9
# pylint: disable-msg=W0403
9550.17.1 by Stuart Bishop
Sketching out implementation
10
import _pythonpath
11
12
from lp.scripts.utilities.sanitizedb import SanitizeDb
13
14
if __name__ == '__main__':
15
    SanitizeDb().lock_and_run()