aboutsummaryrefslogtreecommitdiffstats
path: root/src/python/botan2.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/botan2.py')
-rwxr-xr-xsrc/python/botan2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/botan2.py b/src/python/botan2.py
index 43b2aba3e..8c7259f4f 100755
--- a/src/python/botan2.py
+++ b/src/python/botan2.py
@@ -26,9 +26,9 @@ import time
# Module initialization
#
if sys.platform == 'darwin':
- botan = CDLL('libbotan-2.dylib')
+ botan = CDLL('libbotan-2.dylib') # pylint: disable=invalid-name
else:
- botan = CDLL('libbotan-2.so')
+ botan = CDLL('libbotan-2.so') # pylint: disable=invalid-name
if botan.botan_ffi_supports_api(20151015) == False:
raise Exception("The Botan library does not support the FFI API expected by this version of the Python module")