From 95f7ad73df452f5ff84426453bf54858a499d7ea Mon Sep 17 00:00:00 2001 From: Raphael Roberts Date: Fri, 7 May 2021 23:44:43 -0500 Subject: [PATCH] Skipping the app_gui_icon will save tons of space --- tibi_hardlinks/backup_parser.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tibi_hardlinks/backup_parser.py b/tibi_hardlinks/backup_parser.py index b8f50a1..ce60a84 100644 --- a/tibi_hardlinks/backup_parser.py +++ b/tibi_hardlinks/backup_parser.py @@ -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