mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-24 11:39:25 +01:00
Only write the pid file when --no-pid isn't passed (#633)
Prevents --no-pid from breaking
(cherry picked from commit 30387c9ed5
)
This commit is contained in:
parent
bf9eb8d4ea
commit
28166ed4ee
@ -120,6 +120,7 @@ def _main():
|
|||||||
elif os.name == 'posix':
|
elif os.name == 'posix':
|
||||||
sys.stdout.write("\x1b]2;PyLink %s\x07" % __version__)
|
sys.stdout.write("\x1b]2;PyLink %s\x07" % __version__)
|
||||||
|
|
||||||
|
if not args.no_pid:
|
||||||
# Write the PID file only after forking.
|
# Write the PID file only after forking.
|
||||||
with open(pidfile, 'w') as f:
|
with open(pidfile, 'w') as f:
|
||||||
f.write(str(os.getpid()))
|
f.write(str(os.getpid()))
|
||||||
|
Loading…
Reference in New Issue
Block a user