Merge pull request #326 from linkchecker/fix-word-maybe

Fix MS Word parser, hopefully
This commit is contained in:
Marius Gedminas 2019-10-22 18:08:46 +03:00 committed by GitHub
commit db3e25e934
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -117,7 +117,7 @@ class WordParser(_ParserPlugin):
def check(self, url_data):
"""Parse Word data."""
content = url_data.get_content()
content = url_data.get_raw_content()
filename = get_temp_filename(content)
# open word file and parse hyperlinks
try: