summaryrefslogtreecommitdiffstats
path: root/base/common/python
diff options
context:
space:
mode:
authorAde Lee <alee@redhat.com>2017-04-04 14:52:37 -0400
committerAde Lee <alee@redhat.com>2017-04-04 14:52:37 -0400
commit6a682f8e56c982ed0e0810326e71f9de23347590 (patch)
tree6d2c7aaebae36be8a22d36130b2cbd974ed2c7dc /base/common/python
parent36bfd982c05cc0e4fc9c86c1ac90483ef5d5ae17 (diff)
downloadpki-6a682f8e56c982ed0e0810326e71f9de23347590.tar.gz
pki-6a682f8e56c982ed0e0810326e71f9de23347590.tar.xz
pki-6a682f8e56c982ed0e0810326e71f9de23347590.zip
Fix pylint errors
Diffstat (limited to 'base/common/python')
-rw-r--r--base/common/python/pki/info.py2
-rw-r--r--base/common/python/pki/util.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/base/common/python/pki/info.py b/base/common/python/pki/info.py
index 65d482568..b4da8b073 100644
--- a/base/common/python/pki/info.py
+++ b/base/common/python/pki/info.py
@@ -21,6 +21,8 @@
"""
Module containing the Python client classes for the InfoClient
"""
+from __future__ import absolute_import
+from __future__ import print_function
from six import iteritems
import pki
diff --git a/base/common/python/pki/util.py b/base/common/python/pki/util.py
index 02ecde8a5..0765bcf06 100644
--- a/base/common/python/pki/util.py
+++ b/base/common/python/pki/util.py
@@ -272,4 +272,3 @@ def read_environment_files(env_file_list=None):
for env_val in env_vals:
(key, _, value) = env_val.partition("=")
os.environ[key] = value
-