Skip to content

Commit

Permalink
Merge pull request #665 from andre-rosa/default_installer
Browse files Browse the repository at this point in the history
Print default installer chosen for OS in verbose mode
  • Loading branch information
tfoote authored May 6, 2019
2 parents 8f24319 + 40aabc9 commit 4a2c1d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rosdep2/installers.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def set_default_os_installer_key(self, os_key, installer_key):
if not installer_key(self.os_detect) in self.os_installers[os_key]:
raise KeyError('installer [%s] is not associated with OS [%s]. call add_os_installer_key() first' % (installer_key(self.os_detect), os_key))
if self.verbose:
print('set default installer for OS [%s]' % (os_key,))
print('set default installer [%s] for OS [%s]' % (installer_key(self.os_detect), os_key,))
self.default_os_installer[os_key] = installer_key

def get_default_os_installer_key(self, os_key):
Expand Down

0 comments on commit 4a2c1d8

Please sign in to comment.