-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
do not overwrite pkg_map #42
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
k-okada
added a commit
to k-okada/jsk_roseus
that referenced
this pull request
Nov 21, 2015
k-okada
added a commit
to k-okada/geneus
that referenced
this pull request
Nov 21, 2015
# packages.find_packages(workspaces.get_spaces()) returns package in high-priority-first-order, so we should not overwirte package map which is already found | ||
# https://github.com/ros-infrastructure/catkin_pkg/blob/fa4b136b16e2d2886ab97257684f6bff243edefb/src/catkin_pkg/workspaces.py#L43 | ||
# https://github.com/ros-infrastructure/catkin_pkg/blob/fa4b136b16e2d2886ab97257684f6bff243edefb/src/catkin_pkg/packages.py#L71 | ||
if not pkg_map.has_key(pkg.name): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not use in
not has_key
?
has_key
will be unsupported in Python 3.4.
so it will be >>>>>
if pkg.name not in pkg_map:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thx
7afbfe4
to
2969421
Compare
k-okada
added a commit
to k-okada/geneus
that referenced
this pull request
Nov 21, 2015
2969421
to
29cb8d7
Compare
k-okada
added a commit
to k-okada/geneus
that referenced
this pull request
Nov 21, 2015
29cb8d7
to
c30c2d4
Compare
k-okada
added a commit
to k-okada/geneus
that referenced
this pull request
Nov 21, 2015
c30c2d4
to
152683d
Compare
k-okada
added a commit
to jsk-ros-pkg/jsk_roseus
that referenced
this pull request
Nov 21, 2015
hot fix until jsk-ros-pkg/geneus#42 has released
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
background:
problem:
get_pkg_map
returns roseus package under /opt/ros/indigo, not workspacefailure case:
https://travis-ci.org/jsk-ros-pkg/geneus/builds/92400732
which i added actionlib_tutorials to the run_depend, but not released yet