Skip to content

Commit

Permalink
Fix handling of 'None' group members (#990)
Browse files Browse the repository at this point in the history
  • Loading branch information
cottsay authored Apr 1, 2023
1 parent 89d90c7 commit a2cb9e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ros_buildfarm/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ def topological_order_packages(packages):
d.name for d in all_depends if d.name in decorators_by_name.keys() and
d.evaluated_condition is not False])
unique_depend_names.update([
m for d in decorator.package.group_depends for m in d.members if
m for d in decorator.package.group_depends for m in (d.members or ()) if
d.evaluated_condition is not False])
for name in unique_depend_names:
if name in decorator.depends_for_topological_order:
Expand Down

0 comments on commit a2cb9e1

Please sign in to comment.