Skip to content

Commit

Permalink
print to file, not stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
dsschult committed Oct 8, 2024
1 parent 666e804 commit c4bd246
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iceprod/core/exe.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ async def convert(self):
print('', file=f)
print('# debugging', file=f)
print('echo "dir contents:"', file=f)
print('ls -al')
print('ls -al', file=f)
print('', file=f)
with scope_env(self.cfgparser, self.task.dataset.config['steering'], logger=self.logger) as globalenv:
task = self.task.get_task_config()
Expand Down

0 comments on commit c4bd246

Please sign in to comment.