We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc21bd7 commit b02ff2fCopy full SHA for b02ff2f
src/clusterfuzz/_internal/issue_management/issue_filer.py
@@ -493,9 +493,9 @@ def file_issue(testcase,
493
if issue_tracker.project == 'google-buganizer':
494
logs.info('The values of Component IDs:')
495
logs.info(f'1. Backing: {list(issue.components)}')
496
- removed = list(getattr(issue.components, 'removed', None))
+ removed = list(getattr(issue.components, 'removed', []))
497
logs.info(f'2. Removed: {removed}')
498
- added = list(getattr(issue.components, 'added', None))
+ added = list(getattr(issue.components, 'added', []))
499
logs.info(f'3. Added: {added}')
500
logs.info('Primary attempt to the save the issue.')
501
issue.save()
0 commit comments