|
|
|
@ -23,8 +23,9 @@ def parse_property_text(text): |
|
|
|
match = key_value_regex.match(line) |
|
|
|
if match: |
|
|
|
key = match.group("key") |
|
|
|
value = match.group("value") |
|
|
|
properties[key] = value |
|
|
|
if key != "app_gui_icon": |
|
|
|
value = match.group("value") |
|
|
|
properties[key] = value |
|
|
|
return properties |
|
|
|
|
|
|
|
|
|
|
|
|