From ac0e6b86c0fe1c2ddf231ba6e1ded40fba9e774f Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sat, 23 May 2015 11:48:32 +0200 Subject: [PATCH] RSS: Fix typo. --- plugins/RSS/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/RSS/plugin.py b/plugins/RSS/plugin.py index e5cad1985..7f69f1406 100644 --- a/plugins/RSS/plugin.py +++ b/plugins/RSS/plugin.py @@ -86,7 +86,7 @@ class Feed: plugin_is_loading=False, announced=None): assert name, name if not url: - if not utils.web.httpUrlRe.match(name) + if not utils.web.httpUrlRe.match(name): raise InvalidFeedUrl(name) url = name self.name = name