about summary refs log tree commit diff stats
path: root/ranger/core/actions.py
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-10-02 21:06:11 +0200
committerhut <hut@lavabit.com>2011-10-02 21:06:11 +0200
commit201e64684ceef1f9d0c946bb990df35ab493fd59 (patch)
tree829c1177768c9638e2910f831e36749aecccc640 /ranger/core/actions.py
parent9db1828fb544685615d99a4969a49258f58ebb21 (diff)
downloadranger-201e64684ceef1f9d0c946bb990df35ab493fd59.tar.gz
core.actions: fix decoding error when previewing some files
Diffstat (limited to 'ranger/core/actions.py')
-rw-r--r--ranger/core/actions.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py
index 0dd7686c..b1758e34 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -13,6 +13,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
+import codecs
 import os
 import re
 import shutil
@@ -637,7 +638,8 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware):
 						data[(-1, -1)] = None
 						data['foundpreview'] = False
 					elif exit == 2:
-						data[(-1, -1)] = open(path, 'r').read(1024 * 32)
+						f = codecs.open(path, 'r', errors='ignore')
+						data[(-1, -1)] = f.read(1024 * 32)
 					else:
 						data[(-1, -1)] = None
 					if self.env.cf.realpath == path: