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