From: Mike Bayer Date: Fri, 7 Nov 2008 18:56:42 +0000 (+0000) Subject: docstring fix X-Git-Tag: rel_0_5rc4~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4db07281554b1ccf2588f4996db98a2c9c82122;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git docstring fix --- diff --git a/lib/sqlalchemy/databases/oracle.py b/lib/sqlalchemy/databases/oracle.py index 15b18b1cb0..f46a4bd4e3 100644 --- a/lib/sqlalchemy/databases/oracle.py +++ b/lib/sqlalchemy/databases/oracle.py @@ -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),