~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/daemon.py

  • Committer: Toshio Kuratomi
  • Date: 2010-04-18 17:58:04 UTC
  • mto: (464.1.1 mod-wsgi)
  • mto: This revision was merged to the branch mainline in revision 465.
  • Revision ID: toshio@fedoraproject.org-20100418175804-8auslftjigl36lvr
Add GPLv2+ header to loggerhead.wsgi script

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
            pass
54
54
 
55
55
    f = open(pidfile, 'w')
56
 
    f.write('%d\n' % os.getpid())
57
 
    f.write('%s\n' % home)
 
56
    f.write('%d\n' % (os.getpid(),))
58
57
    f.close()
59
58
 
60
59