diff options
| author | 2019-09-11 18:08:37 +0100 | |
|---|---|---|
| committer | 2019-09-11 18:08:37 +0100 | |
| commit | ad45848abb69830a297a5a33460a80ccca391083 (patch) | |
| tree | 1815173d24fa5feb7fbdaa02b046f89ee62a45d3 /modules/title.py | |
| parent | switch to using IRCBot.http_client() in title.py (diff) | |
| signature | ||
Revert "switch to using IRCBot.http_client() in title.py"
This reverts commit 748008cf360616752375f72e619f741a3b224a6a.
Diffstat (limited to 'modules/title.py')
| -rw-r--r-- | modules/title.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/title.py b/modules/title.py index 94b5f74f..dfaf691c 100644 --- a/modules/title.py +++ b/modules/title.py @@ -26,7 +26,7 @@ class Module(ModuleManager.BaseModule): return None try: - page = self.bot.http_client().request(url, parse=True) + page = utils.http.request(url, parse=True) except utils.http.HTTPWrongContentTypeException: return None except Exception as e: |
