Date format: Remove unnecessary escapement

This commit is contained in:
Frederic Hemberger 2011-11-04 08:40:41 +01:00
parent 142681489f
commit 4feeecfdef
1 changed files with 0 additions and 1 deletions

View File

@ -36,7 +36,6 @@ module Octopress
if format.nil? || format.empty? || format == "ordinal"
date_formatted = ordinalize(date)
else
format.gsub!(/%o/, '%%o')
date_formatted = date.strftime(format)
date_formatted.gsub!(/%o/, ordinal(date.strftime('%e').to_i))
end