aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-02-09 13:37:21 +0000
committerGravatar jesopo2019-02-09 13:37:21 +0000
commit8bbfd1d1c3ec45db15d5470ceb75f410f9c77ea4 (patch)
treec1f746d2fecf250705e2f88920a632ff50a2883f /modules
parentDon't use the event system to get results from other modules - use exports (diff)
signature
Add empty `params` arg to log call (title.py)
Diffstat (limited to 'modules')
-rw-r--r--modules/title.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/title.py b/modules/title.py
index b0fe24d6..1188ba2b 100644
--- a/modules/title.py
+++ b/modules/title.py
@@ -11,7 +11,7 @@ class Module(ModuleManager.BaseModule):
try:
page = utils.http.request(url, soup=True)
except Exception as e:
- self.log.error("failed to get URL title", exc_info=True)
+ self.log.error("failed to get URL title", [], exc_info=True)
return None
if page.data.title:
return page.data.title.text.replace("\n", " ").replace(