Skip to content

Commit c3214f1

Browse files
committed
compiler: fix incorrect stdout cb for stdin_ack
1 parent e459216 commit c3214f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def _main(program):
144144
if key == 'stdin':
145145
if len(data) > 0:
146146
proc.stdin.write(data)
147-
program._cbs.stdout(data)
147+
program._cbs.stdin_ack(data)
148148
try:
149149
proc.stdin.flush()
150150
except OSError as e:

0 commit comments

Comments
 (0)