From f54d362f914d464028c0ced271204a47a2b13e5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Pigeon?= Date: Wed, 15 Oct 2014 15:12:54 +0200 Subject: [PATCH] [FIX] take https website in account --- help_online/models/export_help_wizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/help_online/models/export_help_wizard.py b/help_online/models/export_help_wizard.py index 760c8d7b..61530278 100644 --- a/help_online/models/export_help_wizard.py +++ b/help_online/models/export_help_wizard.py @@ -117,7 +117,7 @@ class ExportHelpWizard(models.TransientModel): if not a_elem.get('href'): continue href = a_elem.get('href') - if not href.startswith('http:'): + if not href.startswith('http'): continue page_url = '/page/%s' % page_prefix template_url = '/page/%s' % template_prefix