Skip to content

Commit

Permalink
Merge pull request #87 from felix-org/develop
Browse files Browse the repository at this point in the history
Fix DeprecationWarning
  • Loading branch information
klen committed Dec 21, 2017
2 parents 440d279 + 3cc2678 commit 5cf5a23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mixer/backend/sqlalchemy.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def postprocess(self, target):
if self.params.get('commit'):
session = self.params.get('session')
if not session:
LOGGER.warn("'commit' set true but session not initialized.")
LOGGER.warning("'commit' set true but session not initialized.")
else:
session.add(target)
session.commit()
Expand Down

0 comments on commit 5cf5a23

Please sign in to comment.