add missing argument parameter to wordcount call

This commit is contained in:
Brian Gough 2016-08-11 09:29:03 +01:00
parent c5917d4a75
commit 872dbc5215

View file

@ -231,7 +231,7 @@ module.exports = CompileManager =
timeout = 10 * 1000
compileName = getCompileName(project_id, user_id)
CommandRunner.run compileName, command, directory, image, timeout, (error) ->
CommandRunner.run compileName, command, directory, image, timeout, {}, (error) ->
return callback(error) if error?
try
stdout = fs.readFileSync(directory + "/" + file_name + ".wc", "utf-8")