summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortoonn <toonn@toonn.io>2022-02-05 16:10:49 +0100
committertoonn <toonn@toonn.io>2022-02-05 16:10:49 +0100
commit90380564ca41429771441f1e3cb3cc606ca5e101 (patch)
tree0f629644cf7ae71d3bbf9d09e1217d35820da49d
parentade69eb05c5791fe02736cf761d3162dd04fb412 (diff)
popen_forked: Drop disappeared Pylint options
-rw-r--r--ranger/ext/popen_forked.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/ext/popen_forked.py b/ranger/ext/popen_forked.py
index 40a5b833..46054e9c 100644
--- a/ranger/ext/popen_forked.py
+++ b/ranger/ext/popen_forked.py
@@ -24,7 +24,7 @@ def Popen_forked(*args, **kwargs): # pylint: disable=invalid-name
) as null_w:
kwargs['stdin'] = null_r
kwargs['stdout'] = kwargs['stderr'] = null_w
- Popen(*args, **kwargs) # pylint: disable=consider-using-with
+ Popen(*args, **kwargs)
os._exit(0) # pylint: disable=protected-access
else:
os.wait()