From c3b59384f5baf9492209f29cb69f97e19eeaf490 Mon Sep 17 00:00:00 2001 From: Alarig Le Lay Date: Mon, 13 Jul 2020 09:40:37 +0200 Subject: [PATCH] =?UTF-8?q?Fixing=20=E2=80=9CValueError:=20too=20many=20va?= =?UTF-8?q?lues=20to=20unpack=20(expected=202)=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- announce_url_title.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/announce_url_title.py b/announce_url_title.py index 031243b..d9cb575 100644 --- a/announce_url_title.py +++ b/announce_url_title.py @@ -308,7 +308,7 @@ def purge_cb(*args): global urls t_now = now() - for url, url_d in urls.copy(): + for url, url_d in urls.copy().items(): if (t_now - url_d['launched']) > \ int(w.config_get_plugin('reannounce_wait'))*60: del urls[url]