diff --git a/pisi/colors.py b/pisi/colors.py index 835ddced..0584e8f4 100644 --- a/pisi/colors.py +++ b/pisi/colors.py @@ -43,6 +43,6 @@ colors = {'black' : "\033[30m", def colorize(msg, color): if colors.has_key(color): - return colors[color] + msg + colors['default'] + return colors[color] + msg + colors['default'] else: - return msg + return msg