diff options
Diffstat (limited to 'modules')
| -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 c84b8637..ba2d946c 100644 --- a/modules/title.py +++ b/modules/title.py @@ -30,7 +30,7 @@ class Module(ModuleManager.BaseModule): except utils.http.HTTPWrongContentTypeException: return None except Exception as e: - self.log.error("failed to get URL title", [], exc_info=True) + self.log.error("failed to get URL title: %s", [url], exc_info=True) return None if page.data.title: title = page.data.title.text.replace("\n", " ").replace( |
