diff options
| author | 2016-03-29 21:06:07 +0100 | |
|---|---|---|
| committer | 2016-03-29 21:06:07 +0100 | |
| commit | 426068f0cf10edb4770e48865df1c779e1a11e14 (patch) | |
| tree | 544d427a0b97459b223045520977eac1da2cbe13 /modules/title.py | |
| parent | added code to Utils.get_url to prevent non-iso-latin-1 urls being attempted. ... (diff) | |
fixed a couple of problems in some modules.
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 22795091..23c966bb 100644 --- a/modules/title.py +++ b/modules/title.py @@ -14,7 +14,7 @@ class Module(object): if len(event["args"]) > 0: url = event["args_split"][0] else: - url = event["channel"].log.find(REGEX_URL) + url = event["log"].find(REGEX_URL) if url: url = re.search(REGEX_URL, url.message).group(0) if not url: |
