Make warning message color brightyellow instead of brightred.. Red indicates

a fatal error..

BUG:FIXED:5619
This commit is contained in:
Faik Uygur
2008-11-26 08:53:08 +00:00
parent 7788d24847
commit c83f49c0bb
+1 -1
View File
@@ -75,7 +75,7 @@ class CLI(pisi.ui.UI):
if ctx.get_option('no_color'):
self.output(_('Warning: ') + msg + '\n', err=True, verbose=verbose)
else:
self.output(pisi.util.colorize(msg + '\n', 'brightred'), err=True, verbose=verbose)
self.output(pisi.util.colorize(msg + '\n', 'brightyellow'), err=True, verbose=verbose)
def error(self, msg):
msg = unicode(msg)