From b965c6e8d9ac5009a7a7f4c647e092289618e634 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Wed, 2 Dec 2015 14:48:01 +0100 Subject: Fix write to status file of starting status Previously no new line was written and so no output was written to file. --- mcwrapper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcwrapper b/mcwrapper index 3b77992..b260d6f 100755 --- a/mcwrapper +++ b/mcwrapper @@ -99,7 +99,7 @@ def __server_start__(): global statusFile statusFile = conf.status + '/status' with open(statusFile, 'w') as f: - f.write(__STATUSSTRINGS__[1]) + f.write(__STATUSSTRINGS__[1] + '\n') global playersFile playersFile = conf.status + '/players' with open(playersFile, 'w') as f: -- cgit v1.2.3