Skip to content

Commit

Permalink
fix: typo in message
Browse files Browse the repository at this point in the history
holamgadol committed May 2, 2023
1 parent b015445 commit abc7d7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion foliant/preprocessors/includes.py
Original file line number Diff line number Diff line change
@@ -124,7 +124,7 @@ def _download_file_from_url(self, url: str) -> Path:
try:
response = urllib.request.urlopen(url, timeout=2)
except (urllib.error.HTTPError, urllib.error.URLError) as error:
self.logger.error(f'Data of not retrieved because {error}\nURL: {url}')
self.logger.error(f'Data is not retrieved with {error}\nURL: {url}')
except socket.timeout:
self.logger.error(f'socket timed out - URL {url}')
else:

0 comments on commit abc7d7b

Please sign in to comment.