Skip to content

Commit

Permalink
removed SA deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
zopyx committed Aug 4, 2009
1 parent 7aa0a61 commit 73b836b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.txt
@@ -1,3 +1,8 @@
1.3.10 (04.082009)
------------------

- removed SA deprecation warning

1.3.9 (06.01.2009)
------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -21,7 +21,7 @@
'Topic :: Software Development :: Libraries :: Python Modules',
]

version = '1.3.9'
version = '1.3.10'

desc = open('README.txt').read().strip()
changes = open('CHANGES.txt').read().strip()
Expand Down
2 changes: 1 addition & 1 deletion src/z3c/sqlalchemy/base.py
Expand Up @@ -135,7 +135,7 @@ def model(self):
def _createEngine(self):
self._engine = create_engine(self.dsn, **self.engine_options)
self._sessionmaker = scoped_session(sessionmaker(bind=self._engine,
transactional=True,
autocommit=False,,
twophase=self.twophase,
autoflush=True,
extension=ZopeTransactionExtension(**self.extension_options),
Expand Down

0 comments on commit 73b836b

Please sign in to comment.