Update of /cvs-repository/Zope
In directory cvs.zope.org:/tmp/cvs-serv25509
Modified Files:
Tag: chrism_logrotate_branch
z2.py
Log Message:
Cause pid file to end in newline.
=== Zope/z2.py 1.56.2.1 => 1.56.2.2 ===
pf = open(PID_FILE, 'w')
pid=str(os.getpid())
- try: pid=str(os.getppid())+' '+pid
+ try: pid=str(os.getppid())+' '+pid+'\n'
except: pass
pf.write(pid)
pf.close()