From 4ac19409b580f8b9e947dd5843c80b54639098d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Fri, 3 May 2019 11:38:22 +0200 Subject: [PATCH] whoops; title is not 'title' (fix files not getting tagged) --- delojza.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/delojza.py b/delojza.py index 33354a7..9e4ddcf 100755 --- a/delojza.py +++ b/delojza.py @@ -123,7 +123,7 @@ class DelojzaBot: title = split[1] source = "fallback (artist - title)" - if title is None and title in info: + if title is None and 'title' in info: title = info['title'] source = "full title fallback"