]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
docstring fix
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 7 Nov 2008 18:56:42 +0000 (18:56 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 7 Nov 2008 18:56:42 +0000 (18:56 +0000)
lib/sqlalchemy/databases/oracle.py

index 15b18b1cb04f8066656447f4212c0ac5b3baf75f..f46a4bd4e3463a9744dfc02664124ef1c9d3df08 100644 (file)
@@ -55,7 +55,7 @@ use the sqlalchemy.schema.Sequence object which is passed to a Column construct:
         Column(...), ...
   )
 
-This step is also required when using table reflection, i.e. autoload=True:
+This step is also required when using table reflection, i.e. autoload=True::
 
   t = Table('mytable', metadata, 
         Column('id', Integer, Sequence('id_seq'), primary_key=True),