Accomodate to the import syntax in build.prop.
Bug: 14024566 Change-Id: I70b8d3c8cfc968a7f039728375f3f7f341cdc11a
This commit is contained in:
@@ -85,8 +85,9 @@ class PropFile:
|
||||
for line in self.lines:
|
||||
if not line or line.startswith("#"):
|
||||
continue
|
||||
key, value = line.split("=", 1)
|
||||
props[key] = value
|
||||
if "=" in line:
|
||||
key, value = line.split("=", 1)
|
||||
props[key] = value
|
||||
return props
|
||||
|
||||
def get(self, name):
|
||||
|
Reference in New Issue
Block a user