Merge pull request #42 from takluyver/colorama-init2

Initialise colorama for textui on Windows.
This commit is contained in:
Kenneth Reitz
2012-09-24 07:23:17 -07:00
+4 -1
View File
@@ -7,7 +7,10 @@ clint.textui
This module provides the text output helper system.
"""
import sys
if sys.platform.startswith('win'):
from ..packages import colorama
colorama.init()
from . import colored
from . import progress