summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/postgresql/base.py
diff options
context:
space:
mode:
authorTaavi Burns <taavi.burns@gmail.com>2013-01-25 22:48:34 -0500
committerTaavi Burns <taavi.burns@gmail.com>2013-01-25 22:48:34 -0500
commit8ca42e38b3cec03298844b6634b16363673bf825 (patch)
treedec67620f7b831a5d9670a3956c0e790419110c2 /lib/sqlalchemy/dialects/postgresql/base.py
parent2cf83604c6ca0df3efa7033c865cbf2beb31cf71 (diff)
downloadsqlalchemy-8ca42e38b3cec03298844b6634b16363673bf825.tar.gz
Fixing a code block in the PostgreSQL base dialect docstring.
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/base.py')
-rw-r--r--lib/sqlalchemy/dialects/postgresql/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py
index d7cfc5b22..3de727e94 100644
--- a/lib/sqlalchemy/dialects/postgresql/base.py
+++ b/lib/sqlalchemy/dialects/postgresql/base.py
@@ -120,7 +120,7 @@ FROM ONLY ...
The dialect supports PostgreSQL's ONLY keyword for targeting only a particular
table in an inheritance hierarchy. This can be used to produce the
``SELECT ... FROM ONLY``, ``UPDATE ONLY ...``, and ``DELETE FROM ONLY ...``
-syntaxes. It uses SQLAlchemy's hints mechanism:
+syntaxes. It uses SQLAlchemy's hints mechanism::
# SELECT ... FROM ONLY ...
result = table.select().with_hint(table, 'ONLY', 'postgresql')