aboutsummaryrefslogtreecommitdiff
path: root/python/olm
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2016-10-25 14:50:15 +0100
committerRichard van der Hoff <richard@matrix.org>2016-10-25 14:50:15 +0100
commit700596b46aadcc224c1768b40d11cf2150b866ac (patch)
tree64083ee4195b0d50fb0b8870847109804fbb412e /python/olm
parent2d7b10a1607422dfd7eff96e9eb6e4e9b767e9b9 (diff)
Update python wrapper to run against libolm.so.2
Diffstat (limited to 'python/olm')
-rw-r--r--python/olm/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/olm/_base.py b/python/olm/_base.py
index bc5c206..80720d9 100644
--- a/python/olm/_base.py
+++ b/python/olm/_base.py
@@ -7,7 +7,7 @@ def read_random(n):
return f.read(n)
lib = cdll.LoadLibrary(os.path.join(
- os.path.dirname(__file__), "..", "..", "build", "libolm.so.1")
+ os.path.dirname(__file__), "..", "..", "build", "libolm.so.2")
)
lib.olm_error.argtypes = []