From d5e4a0362a08ca3c0e7a33ea8caafccb22b906b2 Mon Sep 17 00:00:00 2001 From: Adam Cecile Date: Thu, 19 Apr 2018 22:11:55 +0200 Subject: Port to Python 3.x MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Based on PR sent by Adam Cécile (eLvErDe on GitHub): https://github.com/gluster/libgfapi-python/pull/21 Additional changes to original PR: * Make it pep8 compliant * Fix comment in getcwd() * Add functest36 env to tox.ini Change-Id: I45c4056333c12a82814cf8adcfa87e6687365366 Signed-off-by: Prashanth Pai --- gluster/gfapi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gluster/gfapi/__init__.py') diff --git a/gluster/gfapi/__init__.py b/gluster/gfapi/__init__.py index 785b3e7..e3aa4d3 100644 --- a/gluster/gfapi/__init__.py +++ b/gluster/gfapi/__init__.py @@ -10,5 +10,5 @@ __version__ = '1.1' -from gfapi import File, Dir, DirEntry, Volume +from .gfapi import File, Dir, DirEntry, Volume __all__ = ['File', 'Dir', 'DirEntry', 'Volume'] -- cgit