home · contact · privacy
Fix buggy healthy_addch().
[plomrogue] / client / io.py
1 # This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
2 # or any later version. For details on its copyright, license, and warranties,
3 # see the file NOTICE in the root directory of the PlomRogue source package.
4
5
6 from client.config.io import io
7
8
9 def send(string):
10     io["file_out"].write(string + "\n")
11     io["file_out"].flush()