summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xranger/ext/rifle.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/ranger/ext/rifle.py b/ranger/ext/rifle.py
index c97b360d..09b234d7 100755
--- a/ranger/ext/rifle.py
+++ b/ranger/ext/rifle.py
@@ -20,13 +20,13 @@ Example usage:
 
 import os.path
 import re
-from subprocess import Popen
+from subprocess import Popen, PIPE
 import sys
-from ranger.ext.spawn import spawn
 from ranger.ext.get_executables import get_executables
 
 DEFAULT_PAGER = 'less'
 DEFAULT_EDITOR = 'nano'
+ENCODING = 'utf-8'
 
 def _is_terminal():
 	# Check if stdin (file descriptor 0), stdout (fd 1) and
@@ -162,9 +162,11 @@ class Rifle(object):
 		# Spawn "file" to determine the mime-type of the given file.
 		if self._mimetype:
 			return self._mimetype
-		mimetype = spawn("file", "--mime-type", "-Lb", fname)
-		self._mimetype = mimetype
-		return mimetype
+		process = Popen(["file", "--mime-type", "-Lb", fname],
+				stdout=PIPE, stderr=PIPE)
+		mimetype, _ = process.communicate()
+		self._mimetype = mimetype.decode(ENCODING)
+		return self._mimetype
 
 	def _build_command(self, files, action, flags):
 		# Get the flags
id='n111' href='#n111'>111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153