~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to database/replication/report.py

  • Committer: Curtis Hovey
  • Date: 2011-12-24 17:49:30 UTC
  • mto: This revision was merged to the branch mainline in revision 14602.
  • Revision ID: curtis.hovey@canonical.com-20111224174930-xk1d5cvhyxq46ctf
Moved webapp to lp.services.

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
 
 
21
19
from cgi import escape as html_escape
22
20
from cStringIO import StringIO
23
21
from optparse import OptionParser
24
22
import sys
25
23
 
26
 
from lp.services.database.sqlbase import (
 
24
import _pythonpath
 
25
import replication.helpers
 
26
 
 
27
from canonical.database.sqlbase import (
27
28
    connect,
28
29
    quote_identifier,
29
30
    sqlvalues,
30
31
    )
31
32
from lp.services.scripts import db_options
32
 
import replication.helpers
33
33
 
34
34
 
35
35
class Table: