bumped version
authorvunhat_minh <vunhat_minh@dwango.co.jp>
Thu, 23 Oct 2014 03:44:06 +0000 (12:44 +0900)
committervunhat_minh <vunhat_minh@dwango.co.jp>
Thu, 23 Oct 2014 03:44:06 +0000 (12:44 +0900)
docs/conf.py
rainbowstream/util.py
setup.py

index a00eaa80aa495528416b964b1757ddbd98e0b35b..bc742227dd9a5515527526e6c38f86b1d891ff80 100644 (file)
@@ -48,9 +48,9 @@ copyright = u'2014, Vu Nhat Minh'
 # built documents.
 #
 # The short X.Y version.
-version = '1.1.6'
+version = '1.1.7'
 # The full version, including alpha/beta/rc tags.
-release = '1.1.6'
+release = '1.1.7'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
index 232845c031e807709fb368e3142ce5d91cd72bc8..03eaf903b91a4ee375a98c98e7379ada48cabce5 100644 (file)
@@ -1,16 +1,17 @@
 import json
 
 from twitter.util import printNicely
-
-from .colors import magenta
+from .colors import *
 
 
 def printTwitterErrors(twitterException):
+    """
+    Display Twitter Errors nicely
+    """
     try:
         loadedJson = json.loads(twitterException.response_data)
         for m in loadedJson.get('errors', dict()):
             printNicely(
                 magenta("Error " + str(m.get('code')) + ": " + m.get('message')))
     except ValueError:
-        printNicely(
-                magenta( "Error: " + twitterException.response_data))
+        printNicely(magenta("Error: " + twitterException.response_data))
index 121ce5277d346113f29066d3ce62adb93d40fb16..2bbc458f0c0a26b92a5cde1bf80cee9b510b7351 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ import os
 import os.path
 
 # Bumped version
-version = '1.1.6'
+version = '1.1.7'
 
 # Require
 install_requires = [