mirror of https://github.com/OCA/web.git
[FIX] take https website in account
parent
3dc64137de
commit
f54d362f91
|
@ -117,7 +117,7 @@ class ExportHelpWizard(models.TransientModel):
|
||||||
if not a_elem.get('href'):
|
if not a_elem.get('href'):
|
||||||
continue
|
continue
|
||||||
href = a_elem.get('href')
|
href = a_elem.get('href')
|
||||||
if not href.startswith('http:'):
|
if not href.startswith('http'):
|
||||||
continue
|
continue
|
||||||
page_url = '/page/%s' % page_prefix
|
page_url = '/page/%s' % page_prefix
|
||||||
template_url = '/page/%s' % template_prefix
|
template_url = '/page/%s' % template_prefix
|
||||||
|
|
Loading…
Reference in New Issue