diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/rss2html | 2 |
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 |