From: Orakaro Date: Sun, 3 Aug 2014 14:13:59 +0000 (+0900) Subject: fix small bug X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=commitdiff_plain;h=8101275ee2ac9e3c315643650c929a1ac227a1ea fix small bug --- diff --git a/rainbowstream/rainbow.py b/rainbowstream/rainbow.py index 0915e80..14149d9 100644 --- a/rainbowstream/rainbow.py +++ b/rainbowstream/rainbow.py @@ -507,7 +507,7 @@ def urlopen(): try: if not g['stuff'].isdigit(): return - tid = c['tweet_dict'][g['stuff']] + tid = c['tweet_dict'][int(g['stuff'])] tweet = t.statuses.show(id=tid) link_ary = [ u for u in tweet['text'].split() if u.startswith('http://')] @@ -1172,8 +1172,7 @@ def theme(): c['DECORATED_NAME'])( '[' + x + ']: ') printNicely(green('Theme changed.')) - except Exception as e: - print e + except: printNicely(red('No such theme exists.'))