Skip to content

Commit 45e4438

Browse files
committed
backends/eopkg: Mark security updates with critical severity
1 parent b1396d9 commit 45e4438

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

backends/eopkg/eopkgBackend.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -654,9 +654,8 @@ def get_updates(self, filters):
654654
histories = self._get_history_between(oldRelease, pkg)
655655

656656
securities = [x for x in histories if x.type == "security"]
657-
# FIXME: INFO_BUGFIX Support? We would have to match against #123 Github issues
658657
if len(securities) > 0:
659-
self.package(id, INFO_SECURITY, pkg.summary)
658+
self.package(id, INFO_SECURITY, pkg.summary, INFO_CRITICAL)
660659
else:
661660
self.package(id, INFO_NORMAL, pkg.summary)
662661

0 commit comments

Comments
 (0)