Skip to content

Commit cee1ee4

Browse files
committed
Fix bug in unpacking _parse_checker_output in interactive
1 parent fba3e82 commit cee1ee4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sinol_make/task_type/interactive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def _fill_result(self, result: ExecutionResult, iresult: ExecutionResult, intera
116116
result.Error = None
117117
else:
118118
try:
119-
ok, points, comment = self._parse_checker_output(interactor_output, '')
119+
ok, points, comment, _ = self._parse_checker_output(interactor_output, '')
120120
except CheckerException as e:
121121
result.Status = Status.RE
122122
result.Error = str(e)

0 commit comments

Comments
 (0)