fix #46
authorvunhat_minh <vunhat_minh@dwango.co.jp>
Tue, 26 Aug 2014 02:55:14 +0000 (11:55 +0900)
committervunhat_minh <vunhat_minh@dwango.co.jp>
Tue, 26 Aug 2014 02:55:14 +0000 (11:55 +0900)
docs/conf.py
rainbowstream/colors.py
setup.py

index 0aff2badf9c145eb95b75fd7210d1ba6b67cd1a8..b4ab7bd22f415e7373289b43122a791c494ff1e1 100644 (file)
@@ -48,9 +48,9 @@ copyright = u'2014, Vu Nhat Minh'
 # built documents.
 #
 # The short X.Y version.
-version = '0.8.7'
+version = '0.8.8'
 # The full version, including alpha/beta/rc tags.
-release = '0.8.7'
+release = '0.8.8'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
index d3e55349e390787e218b307b01be471a74325453..bdbc4b44c14d6af7c4009af898b13ed3e86bd44f 100644 (file)
@@ -6,7 +6,7 @@ def basic_color(code):
         c = code
         if bold:
             c = "1;%s" % c
-        return "\001\033[%sm\002%s\001\033[0m\002" % (c, text)
+        return "\033[%sm%s\033[0m" % (c, text)
     return inner
 
 
@@ -16,7 +16,7 @@ def term_color(code):
     """
     def inner(text):
         c = code
-        return "\001\033[38;5;%sm\002%s\001\033[0m\002" % (c, text)
+        return "\033[38;5;%sm%s\033[0m" % (c, text)
     return inner
 
 
index 8a1cf099195a177b94c4aff74279b5c3245e3b6c..874893f201c5629ff5d4e0e9470b1e2331760cc0 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ import os
 import os.path
 
 # Bumped version
-version = '0.8.7'
+version = '0.8.8'
 
 # Require
 install_requires = [