Skip to content
This repository has been archived by the owner on Feb 4, 2020. It is now read-only.

Commit

Permalink
Merge pull request #63 from ament/fix_build_environment
Browse files Browse the repository at this point in the history
fix build environment for packages without dependencies
  • Loading branch information
dirk-thomas committed Oct 28, 2015
2 parents f8e6888 + e03ed96 commit 4b82ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ament_tools/topological_order.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def topological_order_packages(
decorators_by_name = {}
for path, package in packages.items():
# skip non-whitelisted packages
if whitelisted and package.name not in whitelisted:
if whitelisted is not None and package.name not in whitelisted:
continue
# skip blacklisted packages
if blacklisted and package.name in blacklisted:
Expand Down

0 comments on commit 4b82ab9

Please sign in to comment.