diff options
author | halfcrazy <hackzhuyan@gmail.com> | 2015-08-09 12:00:17 +0800 |
---|---|---|
committer | Stefan Urbanek <stefan@agentfarms.net> | 2015-08-25 23:56:10 -0700 |
commit | bf63607b41ff689c68902266c5c62aff8b901629 (patch) | |
tree | f0b3d9bd9a7e28dfb05ebcdade75ff7a7dc6a257 | |
parent | 09be16fc9cd98b2957952911a9e1ed3b1a6da784 (diff) | |
download | sqlalchemy-bf63607b41ff689c68902266c5c62aff8b901629.tar.gz |
fix typo int->into
-rw-r--r-- | lib/sqlalchemy/orm/session.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/orm/session.py b/lib/sqlalchemy/orm/session.py index 4619027e5..b988a9230 100644 --- a/lib/sqlalchemy/orm/session.py +++ b/lib/sqlalchemy/orm/session.py @@ -1983,7 +1983,7 @@ class Session(_SessionClassMethods): For ``autocommit`` Sessions with no active manual transaction, flush() will create a transaction on the fly that surrounds the entire set of - operations int the flush. + operations into the flush. :param objects: Optional; restricts the flush operation to operate only on elements that are in the given collection. |