diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-05-25 14:15:22 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-05-25 14:15:22 (GMT) |
commit | 2fbd4bc628b28c88a45026a1ec4a324ca2bda417 (patch) | |
tree | 83e7097247d1b6eae1e0c401b1f91a7d1b2e0eec /rhautoimport-ra | |
parent | 25acf325139cc0f7ce59406bc083258aa1e8bfee (diff) |
make interface of fetch_parse_rss the same as fetch_parse_json from rhrdlibs
Diffstat (limited to 'rhautoimport-ra')
-rwxr-xr-x | rhautoimport-ra | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rhautoimport-ra b/rhautoimport-ra index 2464614..3544d10 100755 --- a/rhautoimport-ra +++ b/rhautoimport-ra @@ -82,9 +82,9 @@ my $bd = sprintf("%04d-%02d-%02d", @broadcast_day); print "looking for files from $bd in RSS Feed\n"; print " -> $RSS_URL\n"; -my ($feed, $errstr) = rhautoimport::fetch_parse_rss($RSS_URL); -unless (defined $feed) { - print "Error fetching feed: $errstr\n"; +my ($result, $feed) = rhautoimport::fetch_parse_rss($RSS_URL); +unless ($result) { + print "Error fetching feed: $feed\n"; exit 1; } |