diff options
| author | Siho Shin <victory8500@naver.com> | 2026-08-10 22:13:16 +0900 |
|---|---|---|
| committer | Siho Shin <victory8500@naver.com> | 2026-08-10 22:13:16 +0900 |
| commit | e31df0635ac8a142957c3832860f26c981adb686 (patch) | |
| tree | 6a178d66a0e08fe879f843e570f29dd0069ea199 /csv | |
| parent | 9fa0daf247fffdcf21f7af489f6498f0cddb8a6d (diff) | |
Diffstat (limited to 'csv')
| -rwxr-xr-x | csv/critical.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/csv/critical.sh b/csv/critical.sh index ab20b34..c6f1cae 100755 --- a/csv/critical.sh +++ b/csv/critical.sh @@ -47,6 +47,8 @@ def is_critical(row): value = row.get(field, "") if value and "CRITICAL" in value.upper(): return True + if value and "HIGH" in value.upper(): + return True return False |
