bitbake: 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.

(Bitbake rev: c696a16c8200c31c52750037eeafe07e065b6517)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2013-08-23 16:41:53 +00:00
parent 25e410b743
commit 501e1a321d
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ class PRServer(SimpleXMLRPCServer):
pf.close()
self.work_forever()
self.delpid
self.delpid()
os._exit(0)
class PRServSingleton():