Skip to content

Commit

Permalink
Update Launch-system.rst
Browse files Browse the repository at this point in the history
Signed-off-by: Muhammad Ashfaq <[email protected]>
  • Loading branch information
ashfaq92 authored Dec 19, 2023
1 parent f6859c6 commit 060fa33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Tutorials/Intermediate/Launch/Launch-system.rst
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Make sure to create a ``launch`` directory at the top-level of the package you c
.. code-block:: python
import os # ADD
from glob import glob # CHANGE
from glob import glob # ADD
from setuptools import setup
package_name = 'py_launch_example'
Expand All @@ -116,7 +116,7 @@ Make sure to create a ``launch`` directory at the top-level of the package you c
data_files=[
# ... Other data files
# Include all launch files.
(os.path.join('share', package_name, 'launch'), glob(os.path.join('launch', '*launch.[pxy][yma]*'))) # CHANGE
(os.path.join('share', package_name, 'launch'), glob(os.path.join('launch', '*launch.[pxy][yma]*'))) # ADD
]
)
Expand Down

0 comments on commit 060fa33

Please sign in to comment.