1
0
mirror of https://github.com/gryf/wicd.git synced 2026-04-21 05:21:24 +02:00

Fix bug introduced in r356 where wicd would crash upon not finding dhclient.

This commit is contained in:
Andrew Psaltis
2009-04-21 13:34:01 -04:00
parent 8014a2b16a
commit 72e6bb73de
+3 -1
View File
@@ -296,7 +296,9 @@ class BaseInterface(object):
"""
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:
self.dhclient_needs_verbose = True
else: