summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm/unitofwork.py
diff options
context:
space:
mode:
authorJason Kirtland <jek@discorporate.us>2008-07-15 18:21:24 +0000
committerJason Kirtland <jek@discorporate.us>2008-07-15 18:21:24 +0000
commit6917ffb9bdae19a368abef5fdbd4655fc27fcdf2 (patch)
tree30e61c46eb43cc5d83dc4ae6464aa55e77a5efc5 /lib/sqlalchemy/orm/unitofwork.py
parent4fe412795883a75057829f13251bf4a3038931d8 (diff)
downloadsqlalchemy-6917ffb9bdae19a368abef5fdbd4655fc27fcdf2.tar.gz
And thus ends support for Python 2.3.
Diffstat (limited to 'lib/sqlalchemy/orm/unitofwork.py')
-rw-r--r--lib/sqlalchemy/orm/unitofwork.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/sqlalchemy/orm/unitofwork.py b/lib/sqlalchemy/orm/unitofwork.py
index 4edfeefdc..ec3275f06 100644
--- a/lib/sqlalchemy/orm/unitofwork.py
+++ b/lib/sqlalchemy/orm/unitofwork.py
@@ -310,7 +310,9 @@ class UOWTransaction(object):
ret.append(task)
if self._should_log_debug:
- self.logger.debug("Dependent tuples:\n" + "\n".join(["(%s->%s)" % (d[0].class_.__name__, d[1].class_.__name__) for d in self.dependencies]))
+ self.logger.debug("Dependent tuples:\n" + "\n".join(
+ "(%s->%s)" % (d[0].class_.__name__, d[1].class_.__name__)
+ for d in self.dependencies))
self.logger.debug("Dependency sort:\n"+ str(ret))
return ret