Skip to content
Snippets Groups Projects
Commit 84bb46c4 authored by Sander de Snoo's avatar Sander de Snoo
Browse files

Print messages immediately

parent d69e6def
No related branches found
Tags v1.4.3
No related merge requests found
......@@ -18,7 +18,7 @@ def launch_app(name, module_name, kill=False, close_at_exit=False):
config_file,
'--detached'
]
print('Launching', name)
print('Launching', name, flush=True)
if platform.system() == 'Windows':
creationflags = subprocess.CREATE_NEW_PROCESS_GROUP
else:
......
......@@ -10,7 +10,7 @@ def databrowser_init():
cfg = get_configuration()
_configure_sample(cfg)
_connect_to_db(cfg)
print('Starting GUI...')
print('Starting GUI...', flush=True)
def databrowser_main():
# this import takes some time...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment