summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/server/process.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/server/process.py')
-rw-r--r--bitbake/lib/bb/server/process.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py
index 5e2cade267..163dbbb997 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -264,7 +264,3 @@ class BitBakeServer(object):
264 self.connection = BitBakeServerConnection(self) 264 self.connection = BitBakeServerConnection(self)
265 signal.signal(signal.SIGTERM, lambda i, s: self.connection.terminate(force=True)) 265 signal.signal(signal.SIGTERM, lambda i, s: self.connection.terminate(force=True))
266 return self.connection 266 return self.connection
267
268 def launchUI(self, uifunc, *args):
269 return uifunc(*args)
270