aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-03-31 03:26:43 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-03-31 03:26:43 +0000
commit3a958f7196ee002a4c01aee7b911e50676988bb7 (patch)
tree997064ec546d99288276d9b0b1be40ce97e86c2f /IkiWiki
parent35ab3237fa367d82c7062eb172e1a8c90278bef0 (diff)
downloadikiwiki-3a958f7196ee002a4c01aee7b911e50676988bb7.tar
ikiwiki-3a958f7196ee002a4c01aee7b911e50676988bb7.tar.gz
fix error message to include url
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/aggregate.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/aggregate.pm b/IkiWiki/Plugin/aggregate.pm
index f353cb0ca..6e4834ce0 100644
--- a/IkiWiki/Plugin/aggregate.pm
+++ b/IkiWiki/Plugin/aggregate.pm
@@ -244,7 +244,7 @@ sub aggregate () { #{{{
if (! length $feed->{feedurl}) {
my @urls=XML::Feed->find_feeds($feed->{url});
if (! @urls) {
- $feed->{message}=sprintf(gettext("could not find feed at %s"), $feed->{feedurl});
+ $feed->{message}=sprintf(gettext("could not find feed at %s"), $feed->{url});
$feed->{error}=1;
debug($feed->{message});
next;