Slight grammar tweak.

This commit is contained in:
Paul J. Davis 2010-05-19 13:34:42 -04:00
parent fdf8169a2c
commit 63e39e1232

View File

@ -34,7 +34,7 @@ class Pidfile(object):
# Write pidfile
fdir = os.path.dirname(self.fname)
if not os.path.isdir(fdir):
raise RuntimeError("%s don't exist. Can't create pidfile" % fdir)
raise RuntimeError("%s doesn't exist. Can't create pidfile." % fdir)
fd, fname = tempfile.mkstemp(dir=fdir)
os.write(fd, "%s\n" % self.pid)
if self.fname: