Beremiz_service.py
changeset 3843 832bcf1b5b60
parent 3803 b3394107eb8b
child 3884 34da877021d5
equal deleted inserted replaced
3842:3922024076b3 3843:832bcf1b5b60
   556 
   556 
   557     pyroserver.PrintServerInfo()
   557     pyroserver.PrintServerInfo()
   558 
   558 
   559     # Beremiz IDE detects LOCAL:// runtime is ready by looking
   559     # Beremiz IDE detects LOCAL:// runtime is ready by looking
   560     # for self.workdir in the daemon's stdout.
   560     # for self.workdir in the daemon's stdout.
   561     sys.stdout.write(_("Current working directory :") + WorkingDir + "\n")
   561     if sys.stdout:
   562     sys.stdout.flush()
   562         sys.stdout.write(_("Current working directory :") + WorkingDir + "\n")
       
   563         sys.stdout.flush()
   563 
   564 
   564     runtime.GetPLCObjectSingleton().AutoLoad(autostart)
   565     runtime.GetPLCObjectSingleton().AutoLoad(autostart)
   565 
   566 
   566 if havetwisted and havewx:
   567 if havetwisted and havewx:
   567 
   568