Fix CPP checker/ due to judge update
This commit is contained in:
parent
b6d0e57fb6
commit
ab59065c0b
1 changed files with 2 additions and 1 deletions
|
@ -18,7 +18,8 @@ def get_executor(files, lang, compiler_time_limit, problem_id):
|
||||||
if not isinstance(files, list):
|
if not isinstance(files, list):
|
||||||
files = [files]
|
files = [files]
|
||||||
filenames = [os.path.join(get_problem_root(problem_id), f) for f in files]
|
filenames = [os.path.join(get_problem_root(problem_id), f) for f in files]
|
||||||
executor = compile_with_auxiliary_files(filenames, lang, compiler_time_limit)
|
executor = compile_with_auxiliary_files(filenames,
|
||||||
|
compiler_time_limit=compiler_time_limit)
|
||||||
|
|
||||||
return executor
|
return executor
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue