=== modified file 'launchpadBugs/HTMLOperations.py' --- launchpadBugs/HTMLOperations.py 2007-04-02 07:31:23 +0000 +++ launchpadBugs/HTMLOperations.py 2007-04-05 07:27:36 +0000 @@ -24,6 +24,10 @@ count = 0 while count < attempt: try: + if url[:4] != 'http': + url_old = url + url = 'https://' + url + print "wrong url <%s>, try <%s>" %(url_old, url) sock = urllib2.urlopen(url) text = sock.read() sock.close()