aboutsummaryrefslogtreecommitdiffstats
path: root/src/python/botan2.py
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2017-05-04 00:18:49 +0200
committerSimon Warta <[email protected]>2017-05-04 00:19:47 +0200
commite3e4cd7052b4081c792e65b0970d77c34f3c61eb (patch)
treef0f4c857ff8cedc703b48effec78172f7c0dec46 /src/python/botan2.py
parent8ac62d948e4255176015e0c61a4200958822384a (diff)
Silence invalid name warning for module "botan"
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")