Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-04-28 13:18:28 +0000
committerGitHub <noreply@github.com>2021-04-28 15:18:28 +0200
commit4079eebc70af3dff4c5f3071c397697283a6890c (patch)
tree06883c8ffe834ef3dd9e47761bb3ca32a60a44a8 /archinstall/lib/disk.py
parent754e4b8b61b9c81f1d9f49f96cffd369d78bb777 (diff)
Added a mini curses class and generic-multi-select (#362)
* Added a mini curses class. It can do some simple tricks to iterate over menu options and indicate which ones are chosen using generic_multi_select(). * Include the default parameter if set. * Modified 'select_kernel()' to use the new multi-select. * Sneaky character got in. * removed some debugging * removed some debugging * Spelling error * Adding error handling and loop support. * Enforce that 'default' is always selected if no other option is selected. * Fixed backspace issues and ghosting. Co-authored-by: Anton Hvornum <anton.feeds@gmail.com>
Diffstat (limited to 'archinstall/lib/disk.py')
-rw-r--r--archinstall/lib/disk.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py
index 8c7c6818..ff924f62 100644
--- a/archinstall/lib/disk.py
+++ b/archinstall/lib/disk.py
@@ -221,9 +221,6 @@ class Partition():
@encrypted.setter
def encrypted(self, value :bool):
- if value:
- log(f'Marking {self} as encrypted: {value}', level=logging.DEBUG)
- log(f"Callstrack when marking the partition: {''.join(traceback.format_stack())}", level=logging.DEBUG)
self._encrypted = value