diff options
author | Joshua Watt <jpewhacker@gmail.com> | 2019-09-26 12:51:45 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-09-27 13:02:19 +0100 |
commit | 6f6b41e64287b21da038b55d4f02b8ef66ddf29f (patch) | |
tree | 01daa5c31ed06be664f76e268ebe5aae77dad85b /bitbake/lib | |
parent | f971d6ae2e80912f4513c815b2f2fb9909c55aaa (diff) | |
download | poky-6f6b41e64287b21da038b55d4f02b8ef66ddf29f.tar.gz |
bitbake: hashserve: Add missing import
The os module is required to connect to a unix domain socket
(Bitbake rev: 31a5111bcd0080a583d0d95fad3e09ae78bdf0fa)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/hashserv/client.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/hashserv/client.py b/bitbake/lib/hashserv/client.py index 2559bbb3fb..f65956617b 100644 --- a/bitbake/lib/hashserv/client.py +++ b/bitbake/lib/hashserv/client.py | |||
@@ -7,6 +7,7 @@ from contextlib import closing | |||
7 | import json | 7 | import json |
8 | import logging | 8 | import logging |
9 | import socket | 9 | import socket |
10 | import os | ||
10 | 11 | ||
11 | 12 | ||
12 | logger = logging.getLogger('hashserv.client') | 13 | logger = logging.getLogger('hashserv.client') |