<adam_ashley@softhome.net>, fixes #45079.
* Fixed config dir scanning, suggested by burrelln@colorado.edu,
fixes #47390.
+ * Applied config file parser fix by Mamoru KOMACHI <usata@gentoo.org>,
+ fixes #44777.
2004-02-08 Karl Trygve Kalleberg <karltk@gentoo.org>
* Initial import
if x.find("=") == -1 or \
(len(x) and x[0] == "#"):
continue
- (attrib, value) = x.split()
+ (attrib, value) = x.split('=')
+ attrib = attrib.strip().strip('"')
value = value.strip().strip('"')
if attrib == "rsync_timeout":
self.rsync_timeout = value
if x.find("=") == -1 or \
(len(x) and x[0] == "#"):
continue
- attrib,value = x.split("=")
+ (attrib, value) = x.split("=")
+ attrib = attrib.strip().strip('"')
value = value.strip().strip('"')
if attrib == "id":
self.id = value