Merge branch 'master' into constructor-methods

This commit is contained in:
Bob Nystrom
2015-07-19 12:49:23 -07:00
18 changed files with 254 additions and 191 deletions
+1 -1
View File
@@ -234,7 +234,7 @@ def color_text(text, color):
# No ANSI escapes on Windows.
if sys.platform == 'win32':
return text
return str(text)
return color + str(text) + '\033[0m'