mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fix previous commit's except statement for py2.5
This commit is contained in:
parent
47daef1e47
commit
810391316c
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue