diff options
| author | 2019-11-26 14:34:41 +0000 | |
|---|---|---|
| committer | 2019-11-26 14:34:41 +0000 | |
| commit | 1d41bc7c34021058a5fa3d01d8b9ac30b04db88f (patch) | |
| tree | fab68053ca46ec6c5f50a41a49d810cca7a17a36 /modules | |
| parent | default `first_item` to None or it doesn't exist when there's no toots (diff) | |
| signature | ||
`page` is already a soup
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 01425dbe..309b9b00 100644 --- a/modules/title.py +++ b/modules/title.py @@ -60,7 +60,7 @@ class Module(ModuleManager.BaseModule): page = page.soup() if page.title: - title = utils.parse.line_normalise(page.data.title.text) + title = utils.parse.line_normalise(page.title.text) if not title: return -3, None |
