Fix previous commit's except statement for py2.5

This commit is contained in:
Calum Lind 2014-10-02 17:32:43 +01:00
parent 47daef1e47
commit 810391316c

View File

@ -131,7 +131,7 @@ class IPCInterface(component.Component):
try:
os.remove(lockfile)
os.remove(socket)
except OSError as ex:
except OSError, ex:
log.error("Failed to delete lockfile: %s", ex)
try: