Repository: libcloud Updated Branches: refs/heads/trunk f5e95d2f5 -> e83dcb091
Update trigger rtd build script - use https instead of http. Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/e83dcb09 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/e83dcb09 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/e83dcb09 Branch: refs/heads/trunk Commit: e83dcb09125af0949c9001a8889338cfd23d6131 Parents: f5e95d2 Author: Tomaz Muraus <to...@apache.org> Authored: Tue Aug 25 00:40:18 2015 +0200 Committer: Tomaz Muraus <to...@apache.org> Committed: Tue Aug 25 00:40:18 2015 +0200 ---------------------------------------------------------------------- contrib/trigger_rtd_build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/e83dcb09/contrib/trigger_rtd_build.py ---------------------------------------------------------------------- diff --git a/contrib/trigger_rtd_build.py b/contrib/trigger_rtd_build.py index b132e54..657970f 100755 --- a/contrib/trigger_rtd_build.py +++ b/contrib/trigger_rtd_build.py @@ -19,7 +19,7 @@ import urllib2 key = sys.argv[1] -url = 'http://readthedocs.org/build/%s' % (key) +url = 'https://readthedocs.org/build/%s' % (key) req = urllib2.Request(url, '') f = urllib2.urlopen(req) print f.read()