summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/topological.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/topological.py
parentddb9136cf3c8abfe2ba8e05c28707ccb6167b98b (diff)
downloadsqlalchemy-00dfc7d268441d6d6bb1965dd93d1ff5d7d02c9d.tar.gz
converted imports to absolute
Diffstat (limited to 'lib/sqlalchemy/topological.py')
-rw-r--r--lib/sqlalchemy/topological.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/topological.py b/lib/sqlalchemy/topological.py
index 948b3cfea..2a9d027e7 100644
--- a/lib/sqlalchemy/topological.py
+++ b/lib/sqlalchemy/topological.py
@@ -32,7 +32,7 @@ realized this characteristic of the algorithm.
"""
import string, StringIO
from sets import *
-import sqlalchemy.util as util
+from sqlalchemy import util
from sqlalchemy.exceptions import *
class QueueDependencySorter(object):