Skip to content

Commit 0fdea4d

Browse files
authored
typos corrected and support added for getting_started (#587)
* typos corrected in tutorialformatter.py and support added for getting_started.rst, .build_locally.sh runs successfully now * corrected typos and support added for getting_started with correct syntax
1 parent e17da36 commit 0fdea4d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

_scripts/tutorialformatter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def flatten_sub_tutorials(self, file_):
118118
if sub_name in subs:
119119
flattened_lines.extend( subs[sub_name] )
120120
else:
121-
print 'tutorialformatter.py error: sub-tutorial %s not found.' % sub_name
121+
print("tutorialformatter.py error: sub-tutorial " + sub_name + " not found.")
122122
else:
123123
flattened_lines.append( line )
124124
return flattened_lines
@@ -144,7 +144,7 @@ def run(self):
144144
code_prefix = '\n.. code-block:: ' + language + '\n\n'
145145
code_suffix = '\n'
146146

147-
print "tutorial-formatter running on", absfilename
147+
print("tutorial-formatter running on", absfilename)
148148
file_ = open( absfilename, 'r' )
149149
text_to_process = ""
150150
current_block = ""

doc/getting_started/getting_started.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ The simplest way to install MoveIt is from pre-built binaries (Debian): ::
2323
sudo apt install ros-melodic-moveit
2424

2525
Advanced users might want to `install MoveIt from source <http://moveit.ros.org/install/source/>`_.
26+
If you want to build your own MoveIt fork, replace the repository uri in the .rosinstall file with your own.
2627

2728
Create A Catkin Workspace
2829
^^^^^^^^^^^^^^^^^^^^^^^^^

0 commit comments

Comments
 (0)