summaryrefslogtreecommitdiff
path: root/fuse.py
diff options
context:
space:
mode:
authorEthan Estrada <ethan.estrada@gmail.com>2016-03-08 22:00:52 -0700
committerEthan Estrada <ethan.estrada@gmail.com>2016-03-14 22:32:34 -0600
commit8529ed8ac47d7670dbe37e47f91eae7dbcf63372 (patch)
treef0ca20b97634770255c9a5c657a00b8d933106c6 /fuse.py
parentad8964c72190c1c6c579b988ee9fda91c561472b (diff)
downloadfusepy-8529ed8ac47d7670dbe37e47f91eae7dbcf63372.tar.gz
Add Python3 compatibility boilerplate
Diffstat (limited to 'fuse.py')
-rw-r--r--fuse.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fuse.py b/fuse.py
index 6ff7de2..c0978ea 100644
--- a/fuse.py
+++ b/fuse.py
@@ -13,7 +13,7 @@
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-from __future__ import division
+from __future__ import print_function, absolute_import, division
from ctypes import *
from ctypes.util import find_library