Added space between arguments in Convertible errors

This commit is contained in:
Parker Moore 2013-01-10 22:11:13 -08:00
parent 824df94066
commit 6253f79de2
1 changed files with 2 additions and 2 deletions

View File

@ -33,9 +33,9 @@ module Jekyll
self.data = YAML.load($1) self.data = YAML.load($1)
end end
rescue => e rescue => e
puts "Error reading file #{File.join(base,name)}: #{e.message}" puts "Error reading file #{File.join(base, name)}: #{e.message}"
rescue SyntaxError => e rescue SyntaxError => e
puts "YAML Exception reading #{File.join(base,name)}: #{e.message}" puts "YAML Exception reading #{File.join(base, name)}: #{e.message}"
end end
self.data ||= {} self.data ||= {}