summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/hashserv/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/hashserv/client.py')
-rw-r--r--bitbake/lib/hashserv/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/hashserv/client.py b/bitbake/lib/hashserv/client.py
index 7bbf0865d5..0ffd0c2ae2 100644
--- a/bitbake/lib/hashserv/client.py
+++ b/bitbake/lib/hashserv/client.py
@@ -213,7 +213,7 @@ class Client(object):
213 cwd = os.getcwd() 213 cwd = os.getcwd()
214 try: 214 try:
215 os.chdir(os.path.dirname(path)) 215 os.chdir(os.path.dirname(path))
216 self.loop.run_until_complete(self.client.connect_unix(path)) 216 self.loop.run_until_complete(self.client.connect_unix(os.path.basename(path)))
217 self.loop.run_until_complete(self.client.connect()) 217 self.loop.run_until_complete(self.client.connect())
218 finally: 218 finally:
219 os.chdir(cwd) 219 os.chdir(cwd)