diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-11-07 18:31:35 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-11-07 18:31:35 +0000 |
| commit | af070d037ba4b0787e7bd74add6e5aba04f144d3 (patch) | |
| tree | 7a2e8ab3bb9736680066fa17cba8b35638f55415 /lib/sqlalchemy/engine/base.py | |
| parent | c1a9a96ba541c8ec12864259dd2f076ef6e056c8 (diff) | |
| download | sqlalchemy-af070d037ba4b0787e7bd74add6e5aba04f144d3.tar.gz | |
- fixed the close() method on Transaction when using strategy='threadlocal'
Diffstat (limited to 'lib/sqlalchemy/engine/base.py')
| -rw-r--r-- | lib/sqlalchemy/engine/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index bd82f897d..f554d6a16 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -939,7 +939,7 @@ class Transaction(object): method returns. This is used to cancel a Transaction without affecting the scope of - an enclosign transaction. + an enclosing transaction. """ if not self._parent._is_active: return |
