diff options
Diffstat (limited to 'qa/bugzillaAutomation.py')
-rwxr-xr-x | qa/bugzillaAutomation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/bugzillaAutomation.py b/qa/bugzillaAutomation.py index 5416eab4..14670d2d 100755 --- a/qa/bugzillaAutomation.py +++ b/qa/bugzillaAutomation.py @@ -91,7 +91,7 @@ def analyze_bugzilla(statList, bugzillaData, cfg): 'bisected' not in rowKeywords and 'preBibisect' not in rowKeywords and \ 'bibisectNotNeeded' not in rowKeywords and 'notBibisectable' not in rowKeywords: - if row['severity'] is not 'enhancement': + if row['severity'] != 'enhancement': if row['op_sys'] in ["All", "Windows (All)", "Linux (All)", "macOS (All)"]: statList['tagRegression']['add'][rowId] = 'bibisectRequest' else: |