diff --git a/source/How-To-Guides/Migrating-from-ROS1/Migrating-Python-Package-Example.rst b/source/How-To-Guides/Migrating-from-ROS1/Migrating-Python-Package-Example.rst index 96c9598806..81f23a2d19 100644 --- a/source/How-To-Guides/Migrating-from-ROS1/Migrating-Python-Package-Example.rst +++ b/source/How-To-Guides/Migrating-from-ROS1/Migrating-Python-Package-Example.rst @@ -852,7 +852,7 @@ Your refactored code might look like this: with rclpy.init(): rclpy.spin(Talker()) except (ExternalShutdownException, KeyboardInterrupt): - pass + pass Conclusion ----------