X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=bindings%2Fpython%2Fnotmuch%2Fglobals.py;h=f5fad72aa4edf638f98b2508e0bce501fd2a9e55;hp=442f3e3521077469b378d1ed70a4d9f00a640194;hb=7bf5be75ae8e3c2d4e8c06bba8b44f4fd495349b;hpb=a7561cc20b17669784c3259afcbcef98029f93e9 diff --git a/bindings/python/notmuch/globals.py b/bindings/python/notmuch/globals.py index 442f3e35..f5fad72a 100644 --- a/bindings/python/notmuch/globals.py +++ b/bindings/python/notmuch/globals.py @@ -14,7 +14,7 @@ for more details. You should have received a copy of the GNU General Public License along with notmuch. If not, see . -Copyright 2010 Sebastian Spaeth ' +Copyright 2010 Sebastian Spaeth """ import sys from ctypes import CDLL, Structure, POINTER @@ -22,7 +22,7 @@ from ctypes import CDLL, Structure, POINTER #----------------------------------------------------------------------------- #package-global instance of the notmuch library try: - nmlib = CDLL("libnotmuch.so.2") + nmlib = CDLL("libnotmuch.so.3") except: raise ImportError("Could not find shared 'notmuch' library.")