From 414dfbe26e7237f60d1f3d84a419c12ba52ac73e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Arild=20M=C3=A6land?= Date: Wed, 3 Jun 2009 13:20:45 +0200 Subject: [PATCH] Ruby 1.9 issue, must explicitly run to_s on the err object. Closes #14. Signed-off-by: Nick Quaranto --- lib/jekyll.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jekyll.rb b/lib/jekyll.rb index 2d429c6c..8a27e161 100644 --- a/lib/jekyll.rb +++ b/lib/jekyll.rb @@ -70,7 +70,7 @@ module Jekyll STDOUT.puts "Configuration from #{config_file}" rescue => err STDERR.puts "WARNING: Could not read configuration. Using defaults (and options)." - STDERR.puts "\t" + err + STDERR.puts "\t" + err.to_s config = {} end