Commit 99fb8c6e authored by Vincent Pelletier's avatar Vincent Pelletier

Fix unaligned indentation. Found by pylint.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@892 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 8e58383b
......@@ -28,9 +28,9 @@ from neo.util import dump
def not_closed(func):
def decorator(self, *args, **kw):
if self.connector is None:
if self.connector is None:
raise ConnectorConnectionClosedException
return func(self, *args, **kw)
return func(self, *args, **kw)
return decorator
def lockCheckWrapper(func):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment