From a73e6d5fd98eb87443d658048d7c2608ca48427e Mon Sep 17 00:00:00 2001 From: Adam Blackburn Date: Sun, 3 Jan 2010 22:37:57 -1000 Subject: [PATCH] fix udhcpc not working due to an extra period --- wicd/wnettools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wicd/wnettools.py b/wicd/wnettools.py index 870460a..97f7f77 100644 --- a/wicd/wnettools.py +++ b/wicd/wnettools.py @@ -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 == '':