summaryrefslogtreecommitdiffstats
path: root/ffi/lang
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-08-19 17:34:10 +0200
committerJustus Winter <justus@sequoia-pgp.org>2019-08-20 10:07:29 +0200
commit4ce96162f089e62d0d27ab305c227e0823439c10 (patch)
tree0441f93e8f76299a8d2b2c5db155df049c4c2f83 /ffi/lang
parent7555cfeafb28fccd93aac9441cc18f985036cfc7 (diff)
net: Drop SKS pool in favor of keys.openpgp.org.
Diffstat (limited to 'ffi/lang')
-rw-r--r--ffi/lang/python/sequoia/net.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffi/lang/python/sequoia/net.py b/ffi/lang/python/sequoia/net.py
index c5f4a7f4..a89c4e4f 100644
--- a/ffi/lang/python/sequoia/net.py
+++ b/ffi/lang/python/sequoia/net.py
@@ -19,8 +19,8 @@ class KeyServer(SQObject):
return KeyServer(ks, context=ctx)
@classmethod
- def sks_pool(cls, ctx):
- return KeyServer(lib.sq_keyserver_sks_pool(ctx.ref()),
+ def keys_openpgp_org(cls, ctx):
+ return KeyServer(lib.sq_keyserver_keys_openpgp_org(ctx.ref()),
context=ctx)
def get(self, keyid):