diff options
Diffstat (limited to 'examples/graphs/graph1.py')
-rw-r--r-- | examples/graphs/graph1.py | 2 |
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) |