diff options
author | Wolfgang Müller | 2024-11-15 13:28:46 +0100 |
---|---|---|
committer | Wolfgang Müller | 2024-11-15 13:28:46 +0100 |
commit | 105850a66e961fa9f8f521ab65d49f3860ff6cd3 (patch) | |
tree | 6867a8ac3dd2f195a22da1edd6489944b9845dc8 | |
parent | 098ff5424a3e6207e6e7140b5e0848c15d6740d6 (diff) | |
download | hircine-105850a66e961fa9f8f521ab65d49f3860ff6cd3.tar.gz |
backend/plugins: Remove stray apostrophe
Diffstat (limited to '')
-rw-r--r-- | src/hircine/plugins/scrapers/ehentai_api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hircine/plugins/scrapers/ehentai_api.py b/src/hircine/plugins/scrapers/ehentai_api.py index 3720b92..d9d539d 100644 --- a/src/hircine/plugins/scrapers/ehentai_api.py +++ b/src/hircine/plugins/scrapers/ehentai_api.py @@ -72,4 +72,4 @@ class EHentaiAPIScraper(Scraper): except json.JSONDecodeError as err: raise ScrapeError("Could not parse JSON response") from err else: - raise ScrapeError(f"Request failed with status code {request.status_code}'") + raise ScrapeError(f"Request failed with status code {request.status_code}") |