From: Mike Bayer Date: Thu, 16 Aug 2007 15:20:20 +0000 (+0000) Subject: needed orm import X-Git-Tag: rel_0_4beta4~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6306cc6048db21e8b6b996f79b0d16e41efcf57;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git needed orm import --- diff --git a/examples/graphs/graph1.py b/examples/graphs/graph1.py index c2eec44f9f..8188d7c870 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()