~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to database/replication/report.py

  • Committer: William Grant
  • Date: 2011-12-30 06:47:54 UTC
  • mto: This revision was merged to the branch mainline in revision 14610.
  • Revision ID: william.grant@canonical.com-20111230064754-qntgf81lh1ideoa2
Reformat

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
__metaclass__ = type
17
17
__all__ = []
18
18
 
 
19
import _pythonpath
 
20
 
19
21
from cgi import escape as html_escape
20
22
from cStringIO import StringIO
21
23
from optparse import OptionParser
22
24
import sys
23
25
 
24
 
import _pythonpath
25
 
import replication.helpers
26
 
 
27
26
from lp.services.database.sqlbase import (
28
27
    connect,
29
28
    quote_identifier,
30
29
    sqlvalues,
31
30
    )
32
31
from lp.services.scripts import db_options
 
32
import replication.helpers
33
33
 
34
34
 
35
35
class Table: