* [PATCH] hashserve: Add missing import
@ 2019-09-26 17:51 Joshua Watt
0 siblings, 0 replies; only message in thread
From: Joshua Watt @ 2019-09-26 17:51 UTC (permalink / raw)
To: bitbake-devel
The os module is required to connect to a unix domain socket
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
---
bitbake/lib/hashserv/client.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/bitbake/lib/hashserv/client.py b/bitbake/lib/hashserv/client.py
index 2559bbb3fb2..f65956617b9 100644
--- a/bitbake/lib/hashserv/client.py
+++ b/bitbake/lib/hashserv/client.py
@@ -7,6 +7,7 @@ from contextlib import closing
import json
import logging
import socket
+import os
logger = logging.getLogger('hashserv.client')
--
2.21.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2019-09-26 17:51 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-09-26 17:51 [PATCH] hashserve: Add missing import Joshua Watt
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.