Skip to content

Commit

Permalink
Fix getting stdout in _process_wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
MasloMaslane committed Aug 10, 2024
1 parent 372c5f5 commit 4c2dc64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sio/compilers/python.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def _process_wrapper(self, executor, wrapper):
o_files = f.readline().strip('\n').split()
res_exe = f.readline().strip('\n')

stdout = ''
stdout = b''
for cxx_file in cxx_files:
compile_lib = [gxx] + cxxflags + ['-c', cxx_file]
renv = self._execute(executor, compile_lib)
Expand Down

0 comments on commit 4c2dc64

Please sign in to comment.