Skip to content

Commit

Permalink
PAS: drop NullStdoutMixin
Browse files Browse the repository at this point in the history
Ref #958.

For some reason, fpc crashes during compile errors if this is specified,
despite never writing to stdout if it isn't.
  • Loading branch information
Xyene committed Oct 18, 2021
1 parent 5786fce commit 859da67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dmoj/executors/PAS.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from dmoj.executors.mixins import NullStdoutMixin


class Executor(NullStdoutMixin, CompiledExecutor):
class Executor(CompiledExecutor):
ext = 'pas'
name = 'PAS'
command = 'fpc'
Expand Down

0 comments on commit 859da67

Please sign in to comment.