summary refs log tree commit diff stats
path: root/ranger
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
parent9db1828fb544685615d99a4969a49258f58ebb21 (diff)
downloadranger-201e64684ceef1f9d0c946bb990df35ab493fd59.tar.gz
core.actions: fix decoding error when previewing some files
Diffstat (limited to 'ranger')
-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:
href='/akspecs/ranger/commit/doc/colorschemes.txt?h=v1.9.0b6&id=efdc7b16e9f422f2d95271e6d4bf64dd9a03ea33'>efdc7b16 ^
a8f9cf2c ^

efdc7b16 ^


















a8f9cf2c ^

efdc7b16 ^














1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101