Skip to content

Commit

Permalink
Fix db command on osx. Fixes #540. (#541)
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolausDemmel authored and wjwwood committed Aug 8, 2017
1 parent e94c18f commit 528b7eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rosdep2/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ def command_db(options):
if options.filter_for_installers and inst_key not in options.filter_for_installers:
continue
resolved = installer.resolve(rule)
resolved_str = " ".join(resolved)
resolved_str = " ".join([str(r) for r in resolved])
print ("%s -> %s"%(rosdep_name, resolved_str))
except ResolutionError as e:
errors.append(e)
Expand Down

0 comments on commit 528b7eb

Please sign in to comment.