Skip to content
This repository was archived by the owner on May 31, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/roslaunch/src/roslaunch/node_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def print_node_list(roslaunch_files):
loader = roslaunch.xmlloader.XmlLoader(resolve_anon=False)
config = load_config_default(roslaunch_files, None, loader=loader, verbose=False, assign_machines=False)
node_list = get_node_list(config)
print('\n'.join(node_list))
print('\n'.join(sorted(node_list)))
except RLException as e:
print(str(e), file=sys.stderr)
sys.exit(1)
Expand Down
2 changes: 1 addition & 1 deletion tools/roslaunch/src/roslaunch/rlutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def print_file_list(roslaunch_files):
loader = roslaunch.xmlloader.XmlLoader(resolve_anon=True)
config = load_config_default(roslaunch_files, None, loader=loader, verbose=False, assign_machines=False)
files = [os.path.abspath(x) for x in set(config.roslaunch_files) - set([get_roscore_filename()])]
print('\n'.join(files))
print('\n'.join(sorted(files)))
except roslaunch.core.RLException as e:
print(str(e), file=sys.stderr)
sys.exit(1)
Expand Down