From 2b64f55b651696e2bbaf700148f309172e610e9f Mon Sep 17 00:00:00 2001 From: "Isaac I.Y. Saito" <130s@2000.jukuin.keio.ac.jp> Date: Tue, 5 May 2020 02:03:35 -0700 Subject: [PATCH] [rospack.py] Align with the order of package.xml entry (https://github.com/ros-infrastructure/rospkg/pull/133#discussion_r270960413). --- src/rospkg/manifest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rospkg/manifest.py b/src/rospkg/manifest.py index e3d6788a..b9592f2d 100644 --- a/src/rospkg/manifest.py +++ b/src/rospkg/manifest.py @@ -314,11 +314,11 @@ class Manifest(object): Object representation of a ROS manifest file (``manifest.xml`` and ``stack.xml``) """ __slots__ = [ - 'description', 'brief', + 'name', 'description', 'brief', 'author', 'license', 'licenses', 'license_url', 'url', 'depends', 'rosdeps', 'platforms', 'exports', 'version', - 'status', 'name', 'notes', + 'status', 'notes', 'unknown_tags', 'type', 'filename', 'is_catkin']