mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
Fix the PID number stored on filesystem
This commit is contained in:
parent
f90bb516a5
commit
77ad16f2a9
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ def run():
|
|||
if pid:
|
||||
sys.exit()
|
||||
elif config.get("server", "pid"):
|
||||
open(config.get("server", "pid"), "w").write(str(pid))
|
||||
open(config.get("server", "pid"), "w").write(str(os.getpid()))
|
||||
sys.stdout = sys.stderr = open(os.devnull, "w")
|
||||
|
||||
# Register exit function
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue