mirror of
https://github.com/gryf/wicd.git
synced 2026-04-01 18:03:34 +02:00
Fix bug introduced in r356 where wicd would crash upon not finding dhclient.
This commit is contained in:
@@ -296,7 +296,9 @@ class BaseInterface(object):
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
self.dhclient_cmd = self._find_program_path("dhclient")
|
self.dhclient_cmd = self._find_program_path("dhclient")
|
||||||
output = misc.Run(self.dhclient_cmd + " --version", include_stderr=True)
|
if self.dhclient_cmd != None:
|
||||||
|
output = misc.Run(self.dhclient_cmd + " --version",
|
||||||
|
include_stderr=True)
|
||||||
if '4.' in output:
|
if '4.' in output:
|
||||||
self.dhclient_needs_verbose = True
|
self.dhclient_needs_verbose = True
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user