~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/daemon.py

  • Committer: John Arbash Meinel
  • Date: 2010-05-10 21:34:21 UTC
  • mfrom: (418.1.1 plugin_tests)
  • Revision ID: john@arbash-meinel.com-20100510213421-333dpyhl54n1u28h
Allow running the loggerhead test suite using 'bzr selftest'

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())
 
56
    f.write('%d\n' % (os.getpid(),))
57
57
    f.close()
58
58
 
59
59