diff options
Diffstat (limited to 'ranger/ext/lazy_property.py')
-rw-r--r-- | ranger/ext/lazy_property.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/ext/lazy_property.py b/ranger/ext/lazy_property.py index 2fbe0cfd..92dc309d 100644 --- a/ranger/ext/lazy_property.py +++ b/ranger/ext/lazy_property.py @@ -1,6 +1,6 @@ # From http://blog.pythonisito.com/2008/08/lazy-descriptors.html -from __future__ import (absolute_import, print_function) +from __future__ import (absolute_import, division, print_function) class lazy_property(object): # pylint: disable=invalid-name,too-few-public-methods |