Skip to content
Snippets Groups Projects
Commit 3e9a87a7 authored by Jan David Mol's avatar Jan David Mol
Browse files

Fixed error message, was missing a parameter

parent f215048e
No related branches found
No related tags found
No related merge requests found
......@@ -76,8 +76,7 @@ class OPCUAConnection(CommClient):
self.streams.debug_stream("Connected to %s. Initialising.", self._servername())
return True
except socket.error as e:
#TODO
self.streams.error_stream("Could not connect to server %s: %s", self._servername())
self.streams.error_stream("Could not connect to server %s: %s", self._servername(), e)
raise Exception("") from e
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment