We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 20d9429 + 714ae3c commit cb83659Copy full SHA for cb83659
1 file changed
ephemeris/shed_tools.py
@@ -405,7 +405,7 @@ def _strip_revisions(dictionary):
405
flattened_list = []
406
for repo_info in repositories:
407
revisions = repo_info.get('revisions', [])
408
- if len(revisions) > 1:
+ if revisions is not None and len(revisions) > 1:
409
for revision in revisions:
410
stripped_repo_info = _strip_revisions(repo_info)
411
stripped_repo_info['changeset_revision'] = revision
0 commit comments