fix(wrapper): bug in get_client

This commit is contained in:
izzy lyseggen
2021-08-19 13:53:58 +01:00
parent cb07f55551
commit 2250e8a897
+1 -1
View File
@@ -173,7 +173,7 @@ class StreamWrapper:
warn(f"No local account found for server {self.host}", SpeckleWarning)
return self.client
self.client.authenticate(acct.token)
self.client.authenticate(self.account.token)
return self.client
def get_transport(self) -> ServerTransport: