mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
fix python 2.7 for real
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
+5
-1
@@ -18,7 +18,11 @@ import warnings
|
||||
try:
|
||||
from weakref import finalize
|
||||
except ImportError:
|
||||
from backports.weakref import finalize
|
||||
try:
|
||||
from backports.weakref import finalize
|
||||
except ImportError:
|
||||
pass
|
||||
|
||||
from time import time
|
||||
|
||||
logging.basicConfig(level=logging.ERROR)
|
||||
|
||||
Reference in New Issue
Block a user