summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-04-23 19:32:21 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-04-23 19:32:21 +0000
commit7ea3bfdb70172514a7c1f5567570685f085a501c (patch)
treeb955145e89f8e9fc046f884450cdd29632dd9ba2 /IkiWiki/Plugin
parent71d2d930272bcdba0b5d2671506e2386ea416632 (diff)
improve message
Diffstat (limited to 'IkiWiki/Plugin')
-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 be2c96369..319243727 100644
--- a/IkiWiki/Plugin/aggregate.pm
+++ b/IkiWiki/Plugin/aggregate.pm
@@ -275,7 +275,7 @@ sub aggregate () { #{{{
# One common cause of XML::Feed crashing is a feed
# that contains invalid UTF-8 sequences. Convert
# feed to ascii to try to work around.
- $feed->{message}=sprintf(gettext("invalid UTF-8 stripped from feed"));
+ $feed->{message}.=" ".sprintf(gettext("(invalid UTF-8 stripped from feed)"));
$content=Encode::decode_utf8($content);
$f=eval{XML::Feed->parse(\$content)};
}