We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b1281f commit 0001f6eCopy full SHA for 0001f6e
1 file changed
bugzilla/base.py
@@ -1099,7 +1099,7 @@ def _alias_or_int(_v):
1099
for idval in idlist:
1100
idint, alias = _alias_or_int(idval)
1101
for bugdict in r["bugs"]:
1102
- if idint and idint != bugdict.get("id", None):
+ if idint is not None and idint != bugdict.get("id", None):
1103
continue
1104
aliaslist = listify(bugdict.get("alias", None) or [])
1105
if alias and alias not in aliaslist:
0 commit comments