1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-22 05:48:03 +01:00

fix udhcpc not working due to an extra period

This commit is contained in:
Adam Blackburn
2010-01-03 22:37:57 -10:00
parent c1dbf23373
commit a73e6d5fd9

View File

@@ -561,7 +561,7 @@ class BaseInterface(object):
while not udhcpc_complete: while not udhcpc_complete:
line = pipe.readline() line = pipe.readline()
if line.endswith("failing"): if line.endswith("failing."):
udhcpc_success = False udhcpc_success = False
udhcpc_complete = True udhcpc_complete = True
elif line == '': elif line == '':