RSS: Fix __repr__ formatter.

This commit is contained in:
Valentin Lorentz 2019-10-05 15:57:28 +02:00
parent dcf55cf6de
commit 702cfaaf97
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ class Feed:
self.last_exception = None
def __repr__(self):
return 'Feed(%r, %r, %b, <bool>, %r)' % \
return 'Feed(%r, %r, %r, <bool>, %r)' % \
(self.name, self.url, self.initial, self.announced_entries)
def get_command(self, plugin):