mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-02 22:48:40 +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:
|
try:
|
||||||
os.remove(lockfile)
|
os.remove(lockfile)
|
||||||
os.remove(socket)
|
os.remove(socket)
|
||||||
except OSError as ex:
|
except OSError, ex:
|
||||||
log.error("Failed to delete lockfile: %s", ex)
|
log.error("Failed to delete lockfile: %s", ex)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue