]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fixing a code block in the PostgreSQL base dialect docstring.
authorTaavi Burns <taavi.burns@gmail.com>
Sat, 26 Jan 2013 03:48:34 +0000 (22:48 -0500)
committerTaavi Burns <taavi.burns@gmail.com>
Sat, 26 Jan 2013 03:48:34 +0000 (22:48 -0500)
lib/sqlalchemy/dialects/postgresql/base.py

index d7cfc5b2248392088102b4bd564ec15f59aa1428..3de727e94630b379d387c98a3efc3c1bb58d5075 100644 (file)
@@ -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')