Commit 3f48ca20 authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

[1.7.x] Improved a comment. Thanks intgr for the report.

Backport of 476db08b from master
parent 593e72c1
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -341,8 +341,8 @@ class Atomic(object):
                        try:
                            connection.rollback()
                        except Error:
                            # Error during rollback means the connection was
                            # closed. Clean up in case the server dropped it.
                            # An error during rollback means that something
                            # went wrong with the connection. Drop it.
                            connection.close()
                        raise
            else:
@@ -367,8 +367,8 @@ class Atomic(object):
                    try:
                        connection.rollback()
                    except Error:
                        # Error during rollback means the connection was
                        # closed. Clean up in case the server dropped it.
                        # An error during rollback means that something
                        # went wrong with the connection. Drop it.
                        connection.close()

        finally: