Skip to content

Commit

Permalink
Merge pull request #882 from komidore64/system-info-u
Browse files Browse the repository at this point in the history
859892 - system info contains "u"-s in "OS release" field
  • Loading branch information
komidore64 committed Oct 19, 2012
2 parents 3a8e116 + dcbfc7a commit 840c0c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/src/katello/client/core/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ def run(self):
self.printer.add_column('created_at', _('Registered'), formatter=format_date)
self.printer.add_column('updated_at', _('Last updated'), formatter=format_date)
self.printer.add_column('description', multiline=True)
if 'releaseVer' in system and system['releaseVer']:
self.printer.add_column('releaseVer', _('OS release'))
if 'release' in system and system['release']:
self.printer.add_column('release', _('OS release'))
self.printer.add_column('activation_keys', multiline=True, show_with=printer.VerboseStrategy)
self.printer.add_column('host', show_with=printer.VerboseStrategy)
self.printer.add_column('serviceLevel', _('Service Level'))
Expand Down

0 comments on commit 840c0c0

Please sign in to comment.