diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-06-19 18:46:43 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-06-19 18:46:43 +0000 |
commit | 9a122f001aa44af70b8a6c0861c1ab869d4379f7 (patch) | |
tree | 40a51f35c82a450c53b5f5a82ee5df8b7c4e62d6 | |
parent | c8b2ae9f9e17f6e019edd5984a992d9e8048b27c (diff) |
* Corrected a typo in an error handler in the image plugin.
-rw-r--r-- | IkiWiki/Plugin/img.pm | 2 | ||||
-rw-r--r-- | debian/changelog | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/img.pm b/IkiWiki/Plugin/img.pm index cff9dabf0..a453a49ba 100644 --- a/IkiWiki/Plugin/img.pm +++ b/IkiWiki/Plugin/img.pm @@ -62,7 +62,7 @@ sub preprocess (@) { #{{{ return "[[img ".sprintf(gettext("failed to read %s: %s"), $file, $r)."]]" if $r; $r = $im->Resize(geometry => "${w}x${h}"); - return "[[img ".sprinftf(gettext("failed to resize: %s"), $r)."]]" if $r; + return "[[img ".sprintf(gettext("failed to resize: %s"), $r)."]]" if $r; # don't actually write file in preview mode if (! $params{preview}) { diff --git a/debian/changelog b/debian/changelog index 0d31a711a..c8ff8ba5d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +ikiwiki (2.3) UNRELEASED; urgency=low + + * Corrected a typo in an error handler in the image plugin. + + -- Joey Hess <joeyh@debian.org> Tue, 19 Jun 2007 19:46:21 +0100 + ikiwiki (2.2) unstable; urgency=low * Change the aggregate plugin's locking strategy. Now it defers loading state |