From 30f5cb7f4149310ce5666bb3e49a7a723677c45e Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Wed, 16 Jul 2008 07:36:07 +0000 Subject: [PATCH] Use the correct object for datetime.now This is why my commit bit should automatically be revoked if I'm in a hurry --- bluechips/model/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bluechips/model/__init__.py b/bluechips/model/__init__.py index e251d50..12e28d8 100644 --- a/bluechips/model/__init__.py +++ b/bluechips/model/__init__.py @@ -5,7 +5,7 @@ from sqlalchemy import orm from bluechips.model import meta from bluechips.model import types -import datetime +from datetime import datetime def init_model(engine): """Call me before using any of the tables or classes in the model""" -- 2.45.2