diff --git a/plexpy/__init__.py b/plexpy/__init__.py index 2bc29f39..6c44d765 100644 --- a/plexpy/__init__.py +++ b/plexpy/__init__.py @@ -2233,7 +2233,7 @@ def shutdown(restart=False, update=False, checkout=False, reset=False): # https://bugs.python.org/issue19066 if NOFORK: pass - elif common.PLATFORM == 'Windows': + elif common.PLATFORM in ('Windows', 'Darwin'): subprocess.Popen(args, cwd=os.getcwd()) else: os.execv(exe, args)