mirror of
https://github.com/jekyll/jekyll.git
synced 2026-02-02 18:54:58 -05:00
Ruby 1.9 issue, must explicitly run to_s on the err object. Closes #14.
Signed-off-by: Nick Quaranto <nick@quaran.to>
This commit is contained in:
committed by
Nick Quaranto
parent
486ae25fc1
commit
414dfbe26e
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user