From 8e91bd4837c7d4b713b31328f1caf831199f012d Mon Sep 17 00:00:00 2001 From: Uri Blumenthal Date: Wed, 21 Oct 2015 10:35:56 -0400 Subject: Reverted version comparison relaxation, per Jack Lloyd's comment. --- src/python/botan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 -- cgit v1.2.3