diff options
| author | Simon Charette <charette.s@gmail.com> | 2013-03-29 14:16:30 -0400 |
|---|---|---|
| committer | Simon Charette <charette.s@gmail.com> | 2013-03-29 14:16:30 -0400 |
| commit | 6293eaa062db473a208c782f0e419314152a071e (patch) | |
| tree | 6e98cf313a1469706df441a05eff2fe330707927 /docs | |
| parent | 83f182da664645d3eff6f90a98f18d6f7af310bd (diff) | |
Fixed #20159 -- Mispelled attribute in multi-db documentation example.
Thanks to sane4ka.sh at gmail for the report!
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/db/multi-db.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/db/multi-db.txt b/docs/topics/db/multi-db.txt index ae23c3d9f3..182099cc3a 100644 --- a/docs/topics/db/multi-db.txt +++ b/docs/topics/db/multi-db.txt @@ -324,7 +324,7 @@ from:: in the master/slave pool. """ db_list = ('master', 'slave1', 'slave2') - if obj1.state.db in db_list and obj2.state.db in db_list: + if obj1._state.db in db_list and obj2._state.db in db_list: return True return None |
