diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-06-08 14:24:10 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-06-08 14:24:10 +0000 |
| commit | 4302d162ae608ab975f6dfc34350c4883bc18747 (patch) | |
| tree | 847b1ba64a4442a15eccf810ab7da243248e9532 /examples | |
| parent | 4215a5f20003e0a9d2633464ea7073472659a315 (diff) | |
| download | sqlalchemy-4302d162ae608ab975f6dfc34350c4883bc18747.tar.gz | |
documented eager load fix
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/polymorph/polymorph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/polymorph/polymorph.py b/examples/polymorph/polymorph.py index 67138b084..5ff1a6d41 100644 --- a/examples/polymorph/polymorph.py +++ b/examples/polymorph/polymorph.py @@ -4,7 +4,7 @@ import sets # this example illustrates a polymorphic load of two classes, where each class has a very # different set of properties -metadata = BoundMetaData('sqlite://', echo='True') +metadata = BoundMetaData('sqlite://', echo=True) # a table to store companies companies = Table('companies', metadata, |
