We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e52af5 commit 7658697Copy full SHA for 7658697
src/MetaDetective/MetaDetective.py
@@ -837,13 +837,13 @@ def fetch_links_from_url(url: str) -> List[str]:
837
return parser.links
838
839
except urllib.error.URLError as e:
840
- print(f"ERROR: Unable to open {url}. Reason: {e}")
+ print(f"ERROR: Unable to open {url} Reason: {e}")
841
return []
842
except urllib.error.HTTPError as e:
843
- print(f"HTTP Error for URL {url}. Reason: {e.code} - {e.reason}")
+ print(f"HTTP Error for URL {url} Reason: {e.code} - {e.reason}")
844
845
except ValueError as e:
846
- print(f"ERROR: Unable to decode data from {url}. Reason: {e}")
+ print(f"ERROR: Unable to decode data from {url} Reason: {e}")
847
848
849
0 commit comments