Skip to content
Snippets Groups Projects
Unverified Commit 071cbcc7 authored by Johannes Kummert's avatar Johannes Kummert Committed by GitHub
Browse files

use black/white-list

parent 0aa44586
No related branches found
No related tags found
No related merge requests found
...@@ -64,8 +64,8 @@ def index_message_package_dependencies_from_local_environment(package_name_list= ...@@ -64,8 +64,8 @@ def index_message_package_dependencies_from_local_environment(package_name_list=
# The following returns: A list of tuples containing the relative path and a ``Package`` object, # The following returns: A list of tuples containing the relative path and a ``Package`` object,
sorted_package_tuples = catkin_pkg.topological_order.topological_order_packages( sorted_package_tuples = catkin_pkg.topological_order.topological_order_packages(
packages=dict(message_packages.values()), packages=dict(message_packages.values()),
whitelisted=None, whitelisted=message_package_whitelist,
blacklisted=None, blacklisted=message_package_blacklist,
underlay_packages=dict(all_packages.values())) underlay_packages=dict(all_packages.values()))
# print("%s" % [p.name for (unused_relative_path, p) in sorted_package_tuples]) # print("%s" % [p.name for (unused_relative_path, p) in sorted_package_tuples])
return sorted_package_tuples return sorted_package_tuples
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment