From: Sebastian Spaeth Date: Wed, 5 Oct 2011 13:46:03 +0000 (+0200) Subject: python: also use libnotmuch.so.2 X-Git-Tag: 0.9~20 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=70479753a6f0ea115db58f059a2a89cddd9187bb python: also use libnotmuch.so.2 Catch up with the major version bump. I wonder if this could somehow be automatically made the correct version number. Oh well, I hope it doesn't change too often :-). Signed-off-by: Sebastian Spaeth --- diff --git a/bindings/python/notmuch/globals.py b/bindings/python/notmuch/globals.py index 190854a1..51d2b654 100644 --- a/bindings/python/notmuch/globals.py +++ b/bindings/python/notmuch/globals.py @@ -23,7 +23,7 @@ from ctypes.util import find_library #----------------------------------------------------------------------------- #package-global instance of the notmuch library try: - nmlib = CDLL("libnotmuch.so.1") + nmlib = CDLL("libnotmuch.so.2") except: raise ImportError("Could not find shared 'notmuch' library.")