1
0
mirror of https://github.com/gryf/fs-uae-wrapper.git synced 2026-02-01 13:35:48 +01:00
Files
fs-uae-wrapper/fs_uae_wrapper/nogui_message.py

19 lines
325 B
Python

"""
Display message as simple text on console
"""
import sys
class Message:
"""Just a fake message window for systems without TK"""
def __init__(self, msg):
self.msg = msg
self._process = None
def show(self):
sys.stdout.write(self.msg + "\n")
def close(self):
return None