aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/FeedSourcePlugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/FeedSourcePlugin.py')
-rw-r--r--plugins/FeedSourcePlugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/FeedSourcePlugin.py b/plugins/FeedSourcePlugin.py
index e271092..2f0aa94 100644
--- a/plugins/FeedSourcePlugin.py
+++ b/plugins/FeedSourcePlugin.py
@@ -25,7 +25,7 @@ class Plugin(PluginInterface):
print(f"[FeedSourcePlugin#{self.id}] process called")
if source_id is not None:
raise Exception(
- f"FeedSourcePlugin#{self.id} can only be scheduled, trying to process items from ItemSource {source_id}"
+ f"FeedSourcePlugin#{self.id} can only be scheduled, trying to process items from source {source_id}"
)
feed: Any = feedparser.parse(self.feed_url) # type: ignore