aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/FeedSourcePlugin.py
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2023-09-05 13:30:17 +0300
committerJan Tuomi <jans.tuomi@gmail.com>2023-09-10 19:01:00 +0300
commit0b1712bf34ddd0bfe54a0f19eab7ef7c31e7f444 (patch)
tree80200f0f42105b78b783ac7fad3c96e9d8b00149 /plugins/FeedSourcePlugin.py
parent3b32b14f44476f2b4a450f7226523321e69c0c08 (diff)
Implement FacebookSourcePlugin
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