--- simpleconfig.py | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/simpleconfig.py b/simpleconfig.py index 23fcaaa..d00f52f 100644 --- a/simpleconfig.py +++ b/simpleconfig.py @@ -112,9 +112,7 @@ class IfcfgFile(SimpleConfigFile): line = line.strip() if line.startswith("#") or line == '': continue - fields = line.split('=', 2) - if len(fields) < 2: - continue + fields = line.split('=', 1) key = uppercase_ASCII_string(fields[0]) value = fields[1] # XXX hack
Ack.
On 05/28/2010 01:37 PM, Radek Vykydal wrote:
simpleconfig.py | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/simpleconfig.py b/simpleconfig.py index 23fcaaa..d00f52f 100644 --- a/simpleconfig.py +++ b/simpleconfig.py @@ -112,9 +112,7 @@ class IfcfgFile(SimpleConfigFile): line = line.strip() if line.startswith("#") or line == '': continue
fields = line.split('=', 2)if len(fields)< 2:continue
fields = line.split('=', 1) key = uppercase_ASCII_string(fields[0]) value = fields[1] # XXX hack
Ack. It worked for me with or without editing the network config with nm-c-e.
On 05/28/2010 01:37 PM, Radek Vykydal wrote:
simpleconfig.py | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/simpleconfig.py b/simpleconfig.py index 23fcaaa..d00f52f 100644 --- a/simpleconfig.py +++ b/simpleconfig.py @@ -112,9 +112,7 @@ class IfcfgFile(SimpleConfigFile): line = line.strip() if line.startswith("#") or line == '': continue
fields = line.split('=', 2)if len(fields) < 2:continue
fields = line.split('=', 1) key = uppercase_ASCII_string(fields[0]) value = fields[1] # XXX hack
Steffen
Linux on System z Development
IBM Deutschland Research & Development GmbH Vorsitzender des Aufsichtsrats: Martin Jetter Geschäftsführung: Dirk Wittkopp Sitz der Gesellschaft: Böblingen Registergericht: Amtsgericht Stuttgart, HRB 243294
anaconda-devel@lists.fedoraproject.org