Flush standard output when runtime ready, so that IDE knows it, and can continue connection to LOCAL:// uri
--- a/Beremiz_service.py Tue Sep 11 16:08:21 2018 +0200
+++ b/Beremiz_service.py Wed Sep 12 11:36:50 2018 +0200
@@ -517,8 +517,8 @@
# Beremiz IDE detects LOCAL:// runtime is ready by looking
# for self.workdir in the daemon's stdout.
-print(_("Current working directory :"), WorkingDir)
-
+sys.stdout.write(_("Current working directory :") + WorkingDir + "\n")
+sys.stdout.flush()
if havetwisted or havewx:
ui_thread_started = Lock()