Cleaner log entry if deluged missing
This commit is contained in:
parent
4a7876f203
commit
aa0f41ac17
|
@ -665,6 +665,11 @@ class Client(object):
|
||||||
else:
|
else:
|
||||||
subprocess.call(["deluged", "--port=%s" % port, "--config=%s" % config])
|
subprocess.call(["deluged", "--port=%s" % port, "--config=%s" % config])
|
||||||
except OSError, e:
|
except OSError, e:
|
||||||
|
from errno import ENOENT
|
||||||
|
if e.errno == ENOENT:
|
||||||
|
log.error(_("Deluge cannot find the 'deluged' executable, it is likely \
|
||||||
|
that you forgot to install the deluged package or it's not in your PATH."))
|
||||||
|
else:
|
||||||
log.exception(e)
|
log.exception(e)
|
||||||
raise e
|
raise e
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
|
|
Loading…
Reference in New Issue