Removed unneeded debugging line.

This commit is contained in:
Elf M. Sternberg 2013-06-11 09:23:43 -07:00
parent 2ff8172f33
commit 98704f69ff
1 changed files with 0 additions and 1 deletions

View File

@ -12,7 +12,6 @@ fromFile = (path, options, callback) ->
fs.readFile path, 'utf8', (err, str) ->
if callback
return callback(err) if err
console.log(str, options);
return callback(null, render(str, options, callback))
throw err if err