From: Elliot Williams Date: Tue, 26 Aug 2014 14:26:43 +0000 (+0200) Subject: added support for "open" follow https:// links X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=d07e6a36f270bde9f31927d718a03914fb05ab2f;p=rainbowstream.git added support for "open" follow https:// links open only works for links that start with "http://" extended to deal with "https://" --- diff --git a/rainbowstream/rainbow.py b/rainbowstream/rainbow.py index 4b34682..5542ca7 100644 --- a/rainbowstream/rainbow.py +++ b/rainbowstream/rainbow.py @@ -463,6 +463,8 @@ def urlopen(): tweet = t.statuses.show(id=tid) link_ary = [ u for u in tweet['text'].split() if u.startswith('http://')] + link_ary.extend([ + u for u in tweet['text'].split() if u.startswith('https://')]) if not link_ary: printNicely(light_magenta('No url here @.@!')) return