diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-10-29 13:38:26 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-10-29 13:38:26 -0400 |
commit | 5b7677faba891645eb85db2f42ebeaf8b6dcc9f0 (patch) | |
tree | df404972a2be02aa7ede479c500cef6a84e70850 | |
parent | 3182cc6710ae85505aba9c670f434aad06d70e1c (diff) |
fix display of error msg
-rw-r--r-- | IkiWiki/Render.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm index bc997ffb0..7f9c4cb9c 100644 --- a/IkiWiki/Render.pm +++ b/IkiWiki/Render.pm @@ -250,7 +250,7 @@ sub refresh () { #{{{ my $test=$config{srcdir}; while (length $test) { if (-l $test && ! $config{allow_symlinks_before_srcdir}) { - error(sprintf(gettext("symlink found in srcdir path (%s) -- set allow_symlinks_before_srcdir to allow this")), $test); + error(sprintf(gettext("symlink found in srcdir path (%s) -- set allow_symlinks_before_srcdir to allow this"), $test)); } unless ($test=~s/\/+$//) { $test=dirname($test); |