diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-08-16 15:20:20 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-08-16 15:20:20 +0000 |
commit | f6306cc6048db21e8b6b996f79b0d16e41efcf57 (patch) | |
tree | ad3f52032bbc3dd2388333235e99a88aef0d5cd8 /examples/graphs/graph1.py | |
parent | a8946d368201b583ccabc26626f10bf8234deb86 (diff) | |
download | sqlalchemy-f6306cc6048db21e8b6b996f79b0d16e41efcf57.tar.gz |
needed orm import
Diffstat (limited to 'examples/graphs/graph1.py')
-rw-r--r-- | examples/graphs/graph1.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/graphs/graph1.py b/examples/graphs/graph1.py index c2eec44f9..8188d7c87 100644 --- a/examples/graphs/graph1.py +++ b/examples/graphs/graph1.py @@ -1,6 +1,7 @@ """a directed graph example.""" from sqlalchemy import * +from sqlalchemy.orm import * import logging logging.basicConfig() |