1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-21 21:38:06 +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:
line = pipe.readline()
if line.endswith("failing"):
if line.endswith("failing."):
udhcpc_success = False
udhcpc_complete = True
elif line == '':