diff options
author | hut <hut@lepus.uberspace.de> | 2014-12-14 16:33:41 +0100 |
---|---|---|
committer | hut <hut@lepus.uberspace.de> | 2014-12-14 16:33:56 +0100 |
commit | 20ea71805beafe299b707be7a570dfa94117b6cc (patch) | |
tree | d377acd2092f8424dedbcea659481a778b45f389 | |
parent | e0a28380798568eb73c3c8b18ba947ebfdcac43e (diff) | |
download | ranger-20ea71805beafe299b707be7a570dfa94117b6cc.tar.gz |
config/commands.py: fixed py3-specific encoding bug
-rw-r--r-- | ranger/config/commands.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py index b1a1e81d..c496f71e 100644 --- a/ranger/config/commands.py +++ b/ranger/config/commands.py @@ -803,10 +803,7 @@ class bulkrename(Command): listfile.close() self.fm.execute_file([File(listpath)], app='editor') listfile = open(listpath, 'r') - if py3: - new_filenames = listfile.read().decode("utf-8").split("\n") - else: - new_filenames = listfile.read().split("\n") + new_filenames = listfile.read().split("\n") listfile.close() os.unlink(listpath) if all(a == b for a, b in zip(filenames, new_filenames)): |