diff options
author | Uri Blumenthal <[email protected]> | 2015-10-21 10:35:56 -0400 |
---|---|---|
committer | Uri Blumenthal <[email protected]> | 2015-10-21 10:35:56 -0400 |
commit | 8e91bd4837c7d4b713b31328f1caf831199f012d (patch) | |
tree | 3d85f89fa416f80f304bce52bad5b0b2ff550c69 | |
parent | f33973ab466318533ec51c92015dd5276123e4a9 (diff) |
Reverted version comparison relaxation, per Jack Lloyd's comment.
-rwxr-xr-x | src/python/botan.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/botan.py b/src/python/botan.py index 1a669ae0a..7826818de 100755 --- a/src/python/botan.py +++ b/src/python/botan.py @@ -25,7 +25,7 @@ else: expected_api_rev = 20151015 botan_api_rev = botan.botan_ffi_api_version() -if botan_api_rev < expected_api_rev: +if botan_api_rev != expected_api_rev: raise Exception("Bad botan API rev got %d expected %d" % (botan_api_rev, expected_api_rev)) # Internal utilities |