summaryrefslogtreecommitdiff
path: root/wrappers
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers')
-rw-r--r--wrappers/python/eduvpn_common/types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wrappers/python/eduvpn_common/types.py b/wrappers/python/eduvpn_common/types.py
index ea5bbd2..4e54ad3 100644
--- a/wrappers/python/eduvpn_common/types.py
+++ b/wrappers/python/eduvpn_common/types.py
@@ -107,4 +107,4 @@ def get_bool(lib: CDLL, boolInt: c_int) -> bool:
:return: The boolean converted to Python
:rtype: bool
"""
- return boolInt == 1
+ return boolInt != 0