summaryrefslogtreecommitdiff
path: root/examples/graphs/graph1.py
diff options
context:
space:
mode:
authorJason Kirtland <jek@discorporate.us>2007-07-06 00:58:09 +0000
committerJason Kirtland <jek@discorporate.us>2007-07-06 00:58:09 +0000
commit177d30cc011b919c9c6381027d2e5f29e17e5ea7 (patch)
treedecd2f3e31ebe85540d858f181261b3f93671475 /examples/graphs/graph1.py
parent6a30dd13909a10e84ebc09a50a3c0561f5ae803c (diff)
downloadsqlalchemy-177d30cc011b919c9c6381027d2e5f29e17e5ea7.tar.gz
- Deprecated DynamicMetaData- use ThreadLocalMetaData or MetaData instead
- Deprecated BoundMetaData- use MetaData instead - Removed DMD and BMD from documentation
Diffstat (limited to 'examples/graphs/graph1.py')
-rw-r--r--examples/graphs/graph1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/graphs/graph1.py b/examples/graphs/graph1.py
index af75d0ff5..c2eec44f9 100644
--- a/examples/graphs/graph1.py
+++ b/examples/graphs/graph1.py
@@ -6,7 +6,7 @@ import logging
logging.basicConfig()
logging.getLogger('sqlalchemy.engine').setLevel(logging.INFO)
-meta = BoundMetaData('sqlite://')
+meta = MetaData('sqlite://')
nodes = Table('nodes', meta,
Column("nodeid", Integer, primary_key=True)