diff options
author | Thomas Wiest <twiest@redhat.com> | 2014-10-23 16:45:19 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@redhat.com> | 2014-10-23 16:45:19 -0400 |
commit | 1017adbe786f5aa8434ec7e34a0650a1575bf652 (patch) | |
tree | 58fe44bae964a79d0de7a249af1e485f1e783125 /lib/aws_command.rb | |
parent | d8a336f0e86dbe2a933c805c75b8bcc11b67cf8a (diff) | |
download | openshift-1017adbe786f5aa8434ec7e34a0650a1575bf652.tar.gz openshift-1017adbe786f5aa8434ec7e34a0650a1575bf652.tar.bz2 openshift-1017adbe786f5aa8434ec7e34a0650a1575bf652.tar.xz openshift-1017adbe786f5aa8434ec7e34a0650a1575bf652.zip |
minor cleanup
Diffstat (limited to 'lib/aws_command.rb')
-rw-r--r-- | lib/aws_command.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/aws_command.rb b/lib/aws_command.rb index bc353ae64..b8ecb89ac 100644 --- a/lib/aws_command.rb +++ b/lib/aws_command.rb @@ -108,8 +108,8 @@ module OpenShift fmt_str = "%34s %5s %8s %17s %7s" puts - puts fmt_str % ['Name','Env', 'State', 'IP', 'Created By'] - puts fmt_str % ['----','---', '-----', '--', '----------'] + puts fmt_str % ['Name','Env', 'State', 'IP Address', 'Created By'] + puts fmt_str % ['----','---', '-----', '----------', '----------'] hosts.each { |h| puts fmt_str % [h.name, h.env, h.state, h.public_ip, h.created_by ] } puts end |