From 1e32af47a6fef6237744e8d9585853be9b765a33 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Fri, 29 Nov 2013 23:22:10 -0500 Subject: [PATCH] Better config file parser error if it's not there. --- lib/jekyll/configuration.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jekyll/configuration.rb b/lib/jekyll/configuration.rb index ae75034b..a58efd8c 100644 --- a/lib/jekyll/configuration.rb +++ b/lib/jekyll/configuration.rb @@ -106,7 +106,7 @@ module Jekyll when /\.y(a)?ml/ YAML.safe_load_file(filename) else - raise ArgumentError, "No parser for '#{filename}' is available."kk + raise ArgumentError, "No parser for '#{filename}' is available. Use a .toml or .y(a)ml file instead." end end