diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/manpage_completion_test.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/manpage_completion_test.py b/tests/manpage_completion_test.py index f6ce87de..1a01f944 100755 --- a/tests/manpage_completion_test.py +++ b/tests/manpage_completion_test.py @@ -6,8 +6,6 @@ import os.path import re import sys -from ranger.ext.open23 import open23 - # Add relevant ranger module to PATH... there surely is a better way to do this... sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..')) @@ -28,7 +26,8 @@ def get_path_of_man_page(): def read_manpage(): path = get_path_of_man_page() - with open23(path, 'r') as man_page: + # pylint: disable=unspecified-encoding + with open(path, 'r') as man_page: return man_page.read() |