aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Watt <jpewhacker@gmail.com>2019-09-26 12:51:45 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-09-27 13:02:06 +0100
commit31a5111bcd0080a583d0d95fad3e09ae78bdf0fa (patch)
tree8f16ce51aa9280f191b25c096e9cb9aab250afef
parentc74481aa15226e1bff9d53e4ee4b702ebfa1ad32 (diff)
downloadbitbake-31a5111bcd0080a583d0d95fad3e09ae78bdf0fa.tar.gz
hashserve: Add missing import
The os module is required to connect to a unix domain socket Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/hashserv/client.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/hashserv/client.py b/lib/hashserv/client.py
index 2559bbb3f..f65956617 100644
--- a/lib/hashserv/client.py
+++ b/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')