From b6cb60d432a83523cd85d56721412d97b5eff1ef Mon Sep 17 00:00:00 2001 From: Peter Gielda Date: Mon, 7 Oct 2019 00:07:27 +0200 Subject: [PATCH] Remove Logfile option. --- sargraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sargraph.py b/sargraph.py index 73d7a76..37e2a4a 100755 --- a/sargraph.py +++ b/sargraph.py @@ -53,7 +53,7 @@ if len(sys.argv) > 1: sys.exit(1) if cmd == "start": print("Starting sargraph session '%s'" % sid) - p = subprocess.Popen(["screen", "-dmSL", sid, "-Logfile", "/dev/null", os.path.realpath(__file__)]) + p = subprocess.Popen(["screen", "-dmSL", sid, os.path.realpath(__file__)]) while p.poll() is None: time.sleep(0.1) gpid = 0