Browse Source

[FIX] take https website in account

pull/46/head
Cédric Pigeon 10 years ago
parent
commit
f54d362f91
  1. 2
      help_online/models/export_help_wizard.py

2
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

Loading…
Cancel
Save