diff options
author | Jack Lloyd <[email protected]> | 2019-08-05 19:00:23 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-08-06 04:03:25 -0400 |
commit | c64bed2d3b871089e3fea9d8496532fe5c7d8512 (patch) | |
tree | 9465c99bc9b60eefdf905004a1f9ea673065368e /src/python/botan2.py | |
parent | d5b7496378fe25d732860bef23a15cef3de95310 (diff) |
Run Python tests on Windows as well
GH #2059
Diffstat (limited to 'src/python/botan2.py')
-rwxr-xr-x | src/python/botan2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/botan2.py b/src/python/botan2.py index 263bb8078..fa03af57c 100755 --- a/src/python/botan2.py +++ b/src/python/botan2.py @@ -52,7 +52,7 @@ class BotanException(Exception): def _load_botan_dll(expected_version): - possible_dll_names = ['libbotan-2.dylib', 'libbotan-2.so'] + \ + possible_dll_names = ['libbotan-2.dylib', 'libbotan-2.so', 'botan.dll'] + \ ['libbotan-2.so.%d' % (v) for v in reversed(range(8, 16))] for dll_name in possible_dll_names: |