aboutsummaryrefslogtreecommitdiff
path: root/bindings/python/notmuch/globals.py
diff options
context:
space:
mode:
authorSebastian Spaeth <Sebastian@SSpaeth.de>2011-10-05 15:46:03 +0200
committerSebastian Spaeth <Sebastian@SSpaeth.de>2011-10-05 15:46:03 +0200
commit70479753a6f0ea115db58f059a2a89cddd9187bb (patch)
treef50849006980789e7a3d9c27d601c9b746d1399b /bindings/python/notmuch/globals.py
parent051caed5eda4f99febed1b0867bef6b1ca535b0a (diff)
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 <Sebastian@SSpaeth.de>
Diffstat (limited to 'bindings/python/notmuch/globals.py')
-rw-r--r--bindings/python/notmuch/globals.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/python/notmuch/globals.py b/bindings/python/notmuch/globals.py
index 190854a..51d2b65 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.")