summaryrefslogtreecommitdiffstats
path: root/ipalib/x509.py
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2016-01-05 13:57:51 +0100
committerJan Cholasta <jcholast@redhat.com>2016-01-20 11:59:21 +0100
commit06a678c1592928403d7619e11dc0fdb6828d51f9 (patch)
treeb3bb0deef2afa8a7a9e6c182ab6ad0ee37f08083 /ipalib/x509.py
parentb2436560dfb4f2d45d3bf4bdfe1b2a05ff98ee38 (diff)
downloadfreeipa-06a678c1592928403d7619e11dc0fdb6828d51f9.tar.gz
freeipa-06a678c1592928403d7619e11dc0fdb6828d51f9.tar.xz
freeipa-06a678c1592928403d7619e11dc0fdb6828d51f9.zip
Avoid builtins that were removed in Python 3
- `file` was removed in favor of `open`. Switch to the new spelling. - `buffer` was removed in favor of a buffer protocol (and memoryview), and `reload` was moved to importlib. Both are used in py2-only blocks, so just placate PyLint. https://fedorahosted.org/freeipa/ticket/5623 Reviewed-By: Jan Cholasta <jcholast@redhat.com> Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipalib/x509.py')
-rw-r--r--ipalib/x509.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/x509.py b/ipalib/x509.py
index 886bf6af6..2d28876de 100644
--- a/ipalib/x509.py
+++ b/ipalib/x509.py
@@ -130,7 +130,7 @@ def load_certificate(data, datatype=PEM, dbdir=None):
initialize_nss_database(dbdir=dbdir)
if six.PY2:
- return nss.Certificate(buffer(data))
+ return nss.Certificate(buffer(data)) # pylint: disable=buffer-builtin
else:
# In python 3 , `bytes` has the buffer interface
return nss.Certificate(data)