fix help message
authorvunhat_minh <vunhat_minh@dwango.co.jp>
Thu, 25 Sep 2014 03:46:45 +0000 (12:46 +0900)
committervunhat_minh <vunhat_minh@dwango.co.jp>
Thu, 25 Sep 2014 03:46:45 +0000 (12:46 +0900)
docs/conf.py
rainbowstream/rainbow.py
setup.py

index 6f022e185dbfa54ea03cc89886dc038cff9cf182..b008c556f932fe99ce1baf9472abb12ad2393dad 100644 (file)
@@ -48,9 +48,9 @@ copyright = u'2014, Vu Nhat Minh'
 # built documents.
 #
 # The short X.Y version.
-version = '1.1.0'
+version = '1.1.1'
 # The full version, including alpha/beta/rc tags.
-release = '1.1.0'
+release = '1.1.1'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
index 765ce389d6eb03ff7841ffa5e0436d8e4551e32e..7671143b5812d068ee94de0e347fe84d67a14a69 100644 (file)
@@ -489,10 +489,10 @@ def share():
     t = Twitter(auth=authen())
     try:
         id = int(g['stuff'].split()[0])
+        tid = c['tweet_dict'][id]
     except:
-        printNicely(red('Sorry I can\'t understand.'))
+        printNicely(red('Tweet id is not valid.'))
         return
-    tid = c['tweet_dict'][id]
     tweet = t.statuses.show(id=tid)
     url = 'https://twitter.com/' + \
         tweet['user']['screen_name'] + '/status/' + str(tid)
@@ -1417,8 +1417,8 @@ def help_tweets():
         light_green('ufav 12 ') + ' will unfavorite tweet with ' + \
         light_yellow('[id=12]') + '.\n'
     usage += s * 2 + \
-        light_green('share 12 ') + ' will copy the url of the tweet with ' + \
-        light_yellow('[id=12]') + ' to your clipboard.\n'
+        light_green('share 12 ') + ' will get the direct link of the tweet with ' + \
+        light_yellow('[id=12]') + '.\n'
     usage += s * 2 + \
         light_green('del 12 ') + ' will delete tweet with ' + \
         light_yellow('[id=12]') + '.\n'
index 5d1ff93efc880352de2fb67e92bfdb942a72caec..b930f625421ae934248beab241584fe9fbd04f25 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ import os
 import os.path
 
 # Bumped version
-version = '1.1.0'
+version = '1.1.1'
 
 # Require
 install_requires = [