diff options
author | hut <hut@lavabit.com> | 2011-10-02 21:06:11 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2011-10-02 21:06:11 +0200 |
commit | 201e64684ceef1f9d0c946bb990df35ab493fd59 (patch) | |
tree | 829c1177768c9638e2910f831e36749aecccc640 | |
parent | 9db1828fb544685615d99a4969a49258f58ebb21 (diff) | |
download | ranger-201e64684ceef1f9d0c946bb990df35ab493fd59.tar.gz |
core.actions: fix decoding error when previewing some files
-rw-r--r-- | ranger/core/actions.py | 4 |
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: |