~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/database/postgresql.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-06 18:59:36 UTC
  • mfrom: (14645.1.1 typos)
  • Revision ID: launchpad@pqm.canonical.com-20120106185936-c36ko9sfri1s2lkd
[r=bac][no-qa] Fix a slew of typos.

Show diffs side-by-side

added added

removed removed

Lines of Context:
169
169
        '''
170
170
    cur.execute(sql, dict(table=table))
171
171
    for indkey, in cur.fetchall():
172
 
        # We have a space seperated list of integer keys into the attribute
 
172
        # We have a space separated list of integer keys into the attribute
173
173
        # mapping. Ignore the 0's, as they indicate a function and we don't
174
174
        # handle them.
175
175
        keys = [
490
490
    """A libpq connection string.
491
491
 
492
492
    Some PostgreSQL tools take libpq connection strings. Other tools
493
 
    need the components seperated out (such as pg_dump command line
 
493
    need the components separated out (such as pg_dump command line
494
494
    arguments). This class allows you to switch easily between formats.
495
495
 
496
496
    Quoted or escaped values are not supported.