From 702cfaaf9725a1d6bbb5bcd535b3d22a4d8ae255 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sat, 5 Oct 2019 15:57:28 +0200 Subject: [PATCH] RSS: Fix __repr__ formatter. --- 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 8a685adc0..3305e5bcd 100644 --- a/plugins/RSS/plugin.py +++ b/plugins/RSS/plugin.py @@ -116,7 +116,7 @@ class Feed: self.last_exception = None def __repr__(self): - return 'Feed(%r, %r, %b, , %r)' % \ + return 'Feed(%r, %r, %r, , %r)' % \ (self.name, self.url, self.initial, self.announced_entries) def get_command(self, plugin):