diff options
| author | Autissima | 2025-09-03 22:41:10 +0200 |
|---|---|---|
| committer | GitHub | 2025-09-03 22:41:10 +0200 |
| commit | 5b3dc8d5ed4d73d5fa7bb8028d467a923dfbd191 (patch) | |
| tree | 8e7833bf62101f73a699de8ed1d76e667796008b /res | |
| parent | 795889bf813d5c561725c2ca39597d04f33a63cd (diff) | |
| download | unexpected-keyboard-5b3dc8d5ed4d73d5fa7bb8028d467a923dfbd191.tar.gz unexpected-keyboard-5b3dc8d5ed4d73d5fa7bb8028d467a923dfbd191.zip | |
Python script encoding fix (#1093)
* Changed Python scripts so they work on my machine
file open() used default encoding (cp1252 on my machine) but the text is utf-8, had to specify encoding in check_layout.py
Diffstat (limited to 'res')
| -rw-r--r-- | res/values/layouts.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/res/values/layouts.xml b/res/values/layouts.xml index 22337f9..d5b0990 100644 --- a/res/values/layouts.xml +++ b/res/values/layouts.xml @@ -1,4 +1,4 @@ -<?xml version='1.0' encoding='UTF-8'?> +<?xml version='1.0' encoding='utf-8'?> <resources> <!-- DO NOT EDIT. This file is generated, run 'gradle genLayoutsList'. --> <string-array name="pref_layout_values"> |
