From 159c02caf162b49475d603068994b0be7575fdf1 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Sun, 19 Jun 2022 10:31:19 +0000 Subject: [PATCH] scripts/eddn-errors: Also ignore "EVA [Android]" --- scripts/eddn-report-log-errors | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/eddn-report-log-errors b/scripts/eddn-report-log-errors index 32bf2ab..33234c0 100755 --- a/scripts/eddn-report-log-errors +++ b/scripts/eddn-report-log-errors @@ -210,7 +210,10 @@ def process_file(input_file: str) -> None: # Abandoned/unmaintained project # # - elif matches.group('software_name') == 'EVA [iPhone]': + elif ( + matches.group('software_name') == 'EVA [iPhone]' + or matches.group('software_name') == 'EVA [Android]' + ): pass ####################################################################