fix draft filename processing

This commit is contained in:
scribu 2013-02-09 23:38:13 +02:00
parent 78831d94cd
commit 2588d681c9
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ module Jekyll
# #
# Returns nothing. # Returns nothing.
def process(name) def process(name)
slug, ext = *name.match(MATCHER) m, slug, ext = *name.match(MATCHER)
self.date = File.mtime(File.join(@base, name)) self.date = File.mtime(File.join(@base, name))
self.slug = slug self.slug = slug
self.ext = ext self.ext = ext