Skip to content

Commit 3a5eebc

Browse files
committed
Bugzilla: fix pre_translation when no include_fields are specified
Signed-off-by: Cole Robinson <[email protected]>
1 parent 7fcdd2f commit 3a5eebc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bugzilla/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1289,7 +1289,7 @@ def pre_translation(self, query):
12891289
if self._is_redhat_bugzilla:
12901290
_RHBugzillaConverters.pre_translation(query)
12911291
query.update(self._process_include_fields(
1292-
query["include_fields"], None, None))
1292+
query.get("include_fields", []), None, None))
12931293

12941294
def post_translation(self, query, bug):
12951295
"""

0 commit comments

Comments
 (0)