diff options
-rw-r--r-- | ranger/ext/spawn.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ranger/ext/spawn.py b/ranger/ext/spawn.py index c237d88a..39d354d7 100644 --- a/ranger/ext/spawn.py +++ b/ranger/ext/spawn.py @@ -6,6 +6,7 @@ from __future__ import (absolute_import, division, print_function) from os import devnull from subprocess import PIPE, CalledProcessError +from ranger.ext.open23 import open23 from ranger.ext.popen23 import Popen23 ENCODING = 'utf-8' @@ -34,7 +35,7 @@ def check_output(popenargs, **kwargs): with Popen23(popenargs, **kwargs) as process: stdout, _ = process.communicate() else: - with open(devnull, mode='w') as fd_devnull: + with open23(devnull, mode='w') as fd_devnull: with Popen23(popenargs, stderr=fd_devnull, **kwargs) as process: stdout, _ = process.communicate() |