diff options
author | toonn <toonn@toonn.io> | 2020-12-31 18:52:07 +0100 |
---|---|---|
committer | toonn <toonn@toonn.io> | 2020-12-31 19:02:57 +0100 |
commit | a06ec2dce53d16dcab3e5a817d4c67c8568fe1b4 (patch) | |
tree | a9da57999588af85ccb6d7ffa4bc9255da5f9c45 /ranger | |
parent | ffbc0e2a1d66e5a6ac69ca521b8b442e24f81552 (diff) | |
download | ranger-a06ec2dce53d16dcab3e5a817d4c67c8568fe1b4.tar.gz |
Import FileManagerAware
Diffstat (limited to 'ranger')
-rw-r--r-- | ranger/container/tags.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ranger/container/tags.py b/ranger/container/tags.py index e43fcb78..50525848 100644 --- a/ranger/container/tags.py +++ b/ranger/container/tags.py @@ -5,10 +5,11 @@ from __future__ import (absolute_import, division, print_function) -from os.path import isdir, exists, dirname, abspath, realpath, expanduser, sep +from os.path import exists, abspath, realpath, expanduser, sep import string from ranger import PY3 +from ranger.core.shared import FileManagerAware ALLOWED_KEYS = string.ascii_letters + string.digits + string.punctuation |