~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/database/sqlbase.py

  • Committer: William Grant
  • Date: 2011-12-31 00:07:44 UTC
  • mto: This revision was merged to the branch mainline in revision 14610.
  • Revision ID: william.grant@canonical.com-20111231000744-h2127zdtoqbrrymm
Revert database/schema/fti.py changes, as they can't land to devel directly. Add shims to cope with old import paths.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright 2011 Canonical Ltd.  This software is licensed under the
 
2
# GNU Affero General Public License version 3 (see the file LICENSE).
 
3
 
 
4
# Temporary shim for fti.py.
 
5
 
 
6
__all__ = [
 
7
    'connect',
 
8
    'ISOLATION_LEVEL_AUTOCOMMIT',
 
9
    'ISOLATION_LEVEL_READ_COMMITTED',
 
10
    'quote',
 
11
    'quote_identifier',
 
12
    ]
 
13
 
 
14
from lp.services.database.sqlbase import (
 
15
    connect,
 
16
    ISOLATION_LEVEL_AUTOCOMMIT,
 
17
    ISOLATION_LEVEL_READ_COMMITTED,
 
18
    quote,
 
19
    quote_identifier,
 
20
    )