diff options
-rw-r--r-- | src/fe/gtk/OtherSettings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe/gtk/OtherSettings.py b/src/fe/gtk/OtherSettings.py index a160069..00583b0 100644 --- a/src/fe/gtk/OtherSettings.py +++ b/src/fe/gtk/OtherSettings.py @@ -149,7 +149,7 @@ Pick one. Nano is the default and recommended. def create_etc_files(self, etc_files): tmp_etc_files = ("conf.d/keymaps", "conf.d/clock", "rc.conf", "conf.d/xdm") for tmp_etc_file in tmp_etc_files: - if not tmp_etc_file in tmp_etc_files: + if not tmp_etc_file in etc_files: etc_files[tmp_etc_file] = {} return etc_files |