Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions elliott/elliottlib/bzutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,7 @@ def is_invalid_tracker_bug(self):
raise NotImplementedError

def is_flaw_bug(self):
if self.product == "Security Response" and self.component == "vulnerability-draft":
raise ValueError(f'{self.id} has Component "vulnerability-draft". Consult ProdSec on how to proceed.')
return self.product == "Security Response" and self.component == "vulnerability"
return self.product == "Security Response" and self.component in ("vulnerability", "vulnerability-draft")

def make_summary_with_target_version(self, major_version: int, minor_version: int) -> str:
"""Given an OCPBUGS bug summary and the major and minor version numbers,
Expand Down
Loading