From 1d5e3a0def326ef3e148159a7675d32e07364c2f Mon Sep 17 00:00:00 2001 From: barbequesauce Date: Wed, 29 Nov 2017 11:10:18 -0500 Subject: [PATCH] Removing added --nolaunch option from restart --- mylar/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mylar/__init__.py b/mylar/__init__.py index 4cd74af7..9c6f15e4 100644 --- a/mylar/__init__.py +++ b/mylar/__init__.py @@ -1177,8 +1177,8 @@ def shutdown(restart=False, update=False): logger.info('Mylar is restarting...') popen_list = [sys.executable, FULL_PATH] popen_list += ARGS - if '--nolaunch' not in popen_list: - popen_list += ['--nolaunch'] +# if '--nolaunch' not in popen_list: +# popen_list += ['--nolaunch'] logger.info('Restarting Mylar with ' + str(popen_list)) subprocess.Popen(popen_list, cwd=os.getcwd())