From: Michael Trier Date: Thu, 28 Aug 2008 14:21:07 +0000 (+0000) Subject: Corrected typo in the mapper docs. Fixes #1159. X-Git-Tag: rel_0_5rc1~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c99d54e762790578a6c806f6f96da218af2a0f37;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Corrected typo in the mapper docs. Fixes #1159. --- diff --git a/doc/build/content/metadata.txt b/doc/build/content/metadata.txt index 26eab25941..27079bf28e 100644 --- a/doc/build/content/metadata.txt +++ b/doc/build/content/metadata.txt @@ -328,7 +328,7 @@ Similarly, the "onupdate" keyword does the same thing for update statements: Column('id', Integer, primary_key=True), # define 'last_updated' to be populated with datetime.now() - Column('last_updated', DateTime, onupdate=datetime.now), + Column('last_updated', DateTime, onupdate=datetime.datetime.now), ) #### Pre-executed and Inline SQL Expressions {@name=sqlexpression}