summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-23 16:41:53 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-23 17:43:36 +0100
commitc696a16c8200c31c52750037eeafe07e065b6517 (patch)
tree7d369ac3b95d261f623cf73d685bcfae0692b02f
parent1bf0e88f57ba0bca62532e81d0d62cf88e2abcbb (diff)
downloadbitbake-c696a16c8200c31c52750037eeafe07e065b6517.tar.gz
prserv/serv: Fix pid file removal
Mark Hatle spotted there were pid files being left around. This patch fixes things so the removal function is called correctly, the code contained a typo. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/prserv/serv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/prserv/serv.py b/lib/prserv/serv.py
index 7f9331d13..b854686c1 100644
--- a/lib/prserv/serv.py
+++ b/lib/prserv/serv.py
@@ -157,7 +157,7 @@ class PRServer(SimpleXMLRPCServer):
pf.close()
self.work_forever()
- self.delpid
+ self.delpid()
os._exit(0)
class PRServSingleton():