From 3bf04d6bc07be1cb9bd3255bfee13c0f286fea78 Mon Sep 17 00:00:00 2001 From: Bezleputh Date: Wed, 7 May 2014 23:19:27 +0200 Subject: [PATCH] [googletranslate] fix : site is now only availbe using https --- modules/googletranslate/browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/googletranslate/browser.py b/modules/googletranslate/browser.py index dce314ce..1dc86052 100644 --- a/modules/googletranslate/browser.py +++ b/modules/googletranslate/browser.py @@ -54,6 +54,6 @@ class GoogleTranslateBrowser(BaseBrowser): 'eotf': '1', 'text': text.encode('utf-8'), } - self.location('http://'+self.DOMAIN, urllib.urlencode(d)) + self.location('https://'+self.DOMAIN, urllib.urlencode(d)) translation = self.page.get_translation() return translation