diff options
Diffstat (limited to 'ipalib/x509.py')
-rw-r--r-- | ipalib/x509.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ipalib/x509.py b/ipalib/x509.py index 21c287feb..e48d3edf7 100644 --- a/ipalib/x509.py +++ b/ipalib/x509.py @@ -31,6 +31,8 @@ # nsscert: the certificate is an NSS Certificate object # rawcert: the cert is in an unknown format +from __future__ import print_function + import os import sys import base64 @@ -407,4 +409,4 @@ if __name__ == '__main__': nsscert = load_certificate(cert) - print nsscert + print(nsscert) |