Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
package_dir={'':'src'},
py_modules=['OpenOPC'],
url='https://github.com/mkwiatkowski/openopc',
version="1.3.1",
version="1.3.2",
)
1 change: 1 addition & 0 deletions src/OpenOPC.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ def connect(self, opc_server=None, opc_host='localhost'):
self._group_server_handles = {}
self._group_handles_tag = {}
self._group_hooks = {}
return connected
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Won't this always return True? If it's False then an exception is raised on line 244.


def GUID(self):
return self._open_guid
Expand Down