From 9d1ed36c180dc035ae87936327f029ecc96aa4d1 Mon Sep 17 00:00:00 2001 From: Shay Palachy Date: Tue, 25 Apr 2017 00:27:10 +0300 Subject: [PATCH] importint print function from future in python 2 --- cachier/core.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cachier/core.py b/cachier/core.py index 631c2ea..cb7afc2 100644 --- a/cachier/core.py +++ b/cachier/core.py @@ -23,6 +23,7 @@ except ImportError: # we're in python 2.x if 'futures' not in PACKAGES: pip.main(['install', 'futures']) from concurrent.futures import ThreadPoolExecutor + from __future__ import print_function from .pickle_core import _PickleCore from .mongo_core import _MongoCore