summaryrefslogtreecommitdiff
path: root/examples/graphs/graph1.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-08-16 15:20:20 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-08-16 15:20:20 +0000
commitf6306cc6048db21e8b6b996f79b0d16e41efcf57 (patch)
treead3f52032bbc3dd2388333235e99a88aef0d5cd8 /examples/graphs/graph1.py
parenta8946d368201b583ccabc26626f10bf8234deb86 (diff)
downloadsqlalchemy-f6306cc6048db21e8b6b996f79b0d16e41efcf57.tar.gz
needed orm import
Diffstat (limited to 'examples/graphs/graph1.py')
-rw-r--r--examples/graphs/graph1.py1
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()