From 0d53f6bd6cfa37dbefb0fb19fabb5afbbc0a0a0d Mon Sep 17 00:00:00 2001 From: nseo Date: Sun, 13 Jan 2013 22:10:12 +0900 Subject: [PATCH] fix more --- lib/foreman/engine/cli.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/foreman/engine/cli.rb b/lib/foreman/engine/cli.rb index 538dfea..8172810 100644 --- a/lib/foreman/engine/cli.rb +++ b/lib/foreman/engine/cli.rb @@ -45,7 +45,7 @@ class Foreman::Engine::CLI < Foreman::Engine end FOREMAN_COLORS = %w( cyan yellow green magenta red blue bright_cyan bright_yellow - bright_green bright_magenta bright_red, bright_blue ) + bright_green bright_magenta bright_red bright_blue ) def startup @colors = map_colors @@ -89,7 +89,7 @@ private @names.values.each_with_index do |name, index| colors[name] = FOREMAN_COLORS[index % FOREMAN_COLORS.length] end - colors["system"] = "intense_white" + colors["system"] = "bright_white" colors end