From c99d54e762790578a6c806f6f96da218af2a0f37 Mon Sep 17 00:00:00 2001 From: Michael Trier Date: Thu, 28 Aug 2008 14:21:07 +0000 Subject: Corrected typo in the mapper docs. Fixes #1159. --- doc/build/content/metadata.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/build/content/metadata.txt b/doc/build/content/metadata.txt index 26eab2594..27079bf28 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} -- cgit v1.2.1