From: Evan Broder Date: Wed, 16 Jul 2008 07:36:07 +0000 (+0000) Subject: Use the correct object for datetime.now X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=30f5cb7f4149310ce5666bb3e49a7a723677c45e;p=bluechips.git Use the correct object for datetime.now This is why my commit bit should automatically be revoked if I'm in a hurry --- 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"""