Use `relative_path` in error message instead of `path`

This commit is contained in:
Alfred Xing 2014-07-30 12:50:31 -07:00
parent f8c19df79a
commit 989d5d357b
1 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ module Jekyll
self.date = Time.parse(data["date"].to_s)
rescue ArgumentError
path = File.join(@dir || "", name)
msg = "Post '#{path}' does not have a valid date in the YAML front matter.\n"
msg = "Post '#{relative_path}' does not have a valid date in the YAML front matter.\n"
msg << "Fix the date, or exclude the file or directory from being processed"
raise Errors::FatalException.new(msg)
end
@ -173,7 +173,7 @@ module Jekyll
self.ext = ext
rescue ArgumentError
path = File.join(@dir || "", name)
msg = "Post '#{path}' does not have a valid date.\n"
msg = "Post '#{relative_path}' does not have a valid date.\n"
msg << "Fix the date, or exclude the file or directory from being processed"
raise Errors::FatalException.new(msg)
end