~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Bryce Harrington
  • Date: 2011-06-30 20:01:25 UTC
  • mto: This revision was merged to the branch mainline in revision 13353.
  • Revision ID: bryce@canonical.com-20110630200125-rpkxch89ti91kamy
Fix typo in message referring to /etc/apt/sources.list

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
    'quote_like',
25
25
    'quoteIdentifier',
26
26
    'quote_identifier',
 
27
    'RandomiseOrderDescriptor',
27
28
    'reset_store',
28
29
    'rollback',
29
30
    'session_store',
342
343
            [database]
343
344
            rw_main_master: %(main_connection_string)s
344
345
            isolation_level: %(isolation_level)s
345
 
            """ % {
346
 
                'isolation_level': isolation_level,
347
 
                'main_connection_string': main_connection_string,
348
 
                })
 
346
            """ % vars())
349
347
 
350
348
        if dbuser:
351
349
            # XXX 2009-05-07 stub bug=373252: Scripts should not be connecting
354
352
                [launchpad]
355
353
                dbuser: %(dbuser)s
356
354
                auth_dbuser: launchpad_auth
357
 
                """ % {'dbuser': dbuser})
 
355
                """ % vars())
358
356
 
359
357
        if cls._installed is not None:
360
358
            if cls._config_overlay != overlay: