aboutsummaryrefslogtreecommitdiffstats
path: root/bin/rss2html
diff options
context:
space:
mode:
Diffstat (limited to 'bin/rss2html')
-rwxr-xr-xbin/rss2html2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/rss2html b/bin/rss2html
index b7be920..294fd1b 100755
--- a/bin/rss2html
+++ b/bin/rss2html
@@ -30,6 +30,6 @@ feeds = YAML.load(IO.read(config_file))
items = []
feeds.each do |t, f|
- feed = Feed.new(t, f)
+ feed = Rss2Html::Feed.new(t, f)
puts feed.render
end