~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/sanitize-db.py

[r=benji][bug=795573,
 796233] On DistroSeries:+localpackagediffs ensure that the comment
 form is hidden after adding a new comment to a DistroSeriesDifference,
 prevent empty comments from being submitted,
 and add some animations and effects to make the UI less jarring and easier to
 follow.

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()