Show More
@@ -78,6 +78,13 b' def relative_links(html_source, server_p' | |||
|
78 | 78 | return html_source |
|
79 | 79 | |
|
80 | 80 | try: |
|
81 | from lxml.html import fromstring | |
|
82 | from lxml.html import tostring | |
|
83 | except ImportError: | |
|
84 | log.exception('Failed to import lxml') | |
|
85 | return html_source | |
|
86 | ||
|
87 | try: | |
|
81 | 88 | doc = lxml.html.fromstring(html_source) |
|
82 | 89 | except Exception: |
|
83 | 90 | return html_source |
General Comments 0
You need to be logged in to leave comments.
Login now