summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine/threadlocal.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-10-26 20:30:41 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-10-26 20:30:41 +0000
commit00dfc7d268441d6d6bb1965dd93d1ff5d7d02c9d (patch)
tree3640327fe8adab5c77786c3de59514970ad2bc48 /lib/sqlalchemy/engine/threadlocal.py
parentddb9136cf3c8abfe2ba8e05c28707ccb6167b98b (diff)
downloadsqlalchemy-00dfc7d268441d6d6bb1965dd93d1ff5d7d02c9d.tar.gz
converted imports to absolute
Diffstat (limited to 'lib/sqlalchemy/engine/threadlocal.py')
-rw-r--r--lib/sqlalchemy/engine/threadlocal.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/engine/threadlocal.py b/lib/sqlalchemy/engine/threadlocal.py
index a04e8edbe..beac3ee3f 100644
--- a/lib/sqlalchemy/engine/threadlocal.py
+++ b/lib/sqlalchemy/engine/threadlocal.py
@@ -1,6 +1,6 @@
from sqlalchemy import schema, exceptions, util, sql, types
import StringIO, sys, re
-import base, default
+from sqlalchemy.engine import base, default
"""provides a thread-local transactional wrapper around the basic ComposedSQLEngine. multiple calls to engine.connect()
will return the same connection for the same thread. also provides begin/commit methods on the engine itself