diff options
author | Wojciech Siewierski <wojciech.siewierski@onet.pl> | 2017-12-17 20:01:56 +0100 |
---|---|---|
committer | Wojciech Siewierski <wojciech.siewierski@onet.pl> | 2017-12-17 20:14:36 +0100 |
commit | 366b1deff7c3deec7fbf8245e23e7d095ea11c14 (patch) | |
tree | 5424e660441fd66bf02c21079c02fbede010f4b1 | |
parent | 095dbfbce75a05ceb5e2aaf83637576fbbc9f0b9 (diff) | |
download | ranger-366b1deff7c3deec7fbf8245e23e7d095ea11c14.tar.gz |
Change the encoding from utf8 to utf-8
Both work for Python just as well but the former causes GNU Emacs to freak out.
-rw-r--r-- | ranger/ext/widestring.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/ext/widestring.py b/ranger/ext/widestring.py index ed66f3c7..0153c16c 100644 --- a/ranger/ext/widestring.py +++ b/ranger/ext/widestring.py @@ -1,4 +1,4 @@ -# -*- encoding: utf8 -*- +# -*- encoding: utf-8 -*- # This file is part of ranger, the console file manager. # License: GNU GPL version 3, see the file "AUTHORS" for details. |