mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-14 14:49:21 +01:00
Unix: fixed uncaught OSError exception raised when executing ping fails.
Signed-off-by: Daniel Folkinshteyn <nanotube@users.sourceforge.net>
This commit is contained in:
parent
f69c47b092
commit
61167ce909
@ -269,12 +269,16 @@ class Unix(callbacks.Plugin):
|
||||
else:
|
||||
try: host = host.group(0)
|
||||
except AttributeError: pass
|
||||
|
||||
inst = subprocess.Popen([pingCmd,'-c','1', host],
|
||||
stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE,
|
||||
stdin=file(os.devnull))
|
||||
|
||||
try:
|
||||
inst = subprocess.Popen([pingCmd,'-c','1', host],
|
||||
stdout=subprocess.PIPE,
|
||||
stderr=subprocess.PIPE,
|
||||
stdin=file(os.devnull))
|
||||
except OSError, e:
|
||||
irc.error('It seems the configured ping command was '
|
||||
'not available (%s).' % e, Raise=True)
|
||||
|
||||
result = inst.communicate()
|
||||
|
||||
if result[1]: # stderr
|
||||
|
Loading…
Reference in New Issue
Block a user