[bitbake-devel] [PATCH] hashserve: Add missing import

Joshua Watt jpewhacker at gmail.com
Thu Sep 26 17:51:45 UTC 2019


The os module is required to connect to a unix domain socket

Signed-off-by: Joshua Watt <JPEWhacker at 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



More information about the bitbake-devel mailing list