about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/ext/spawn.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/ext/spawn.py b/ranger/ext/spawn.py
index 39d354d7..57151c84 100644
--- a/ranger/ext/spawn.py
+++ b/ranger/ext/spawn.py
@@ -3,10 +3,10 @@
 
 from __future__ import (absolute_import, division, print_function)
 
+from io import open
 from os import devnull
 from subprocess import PIPE, CalledProcessError
 
-from ranger.ext.open23 import open23
 from ranger.ext.popen23 import Popen23
 
 ENCODING = 'utf-8'
@@ -35,7 +35,7 @@ def check_output(popenargs, **kwargs):
         with Popen23(popenargs, **kwargs) as process:
             stdout, _ = process.communicate()
     else:
-        with open23(devnull, mode='w') as fd_devnull:
+        with open(devnull, mode='w') as fd_devnull:
             with Popen23(popenargs, stderr=fd_devnull, **kwargs) as process:
                 stdout, _ = process.communicate()