From 2319267a46fac6186ced1916e386c01332a058e9 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Wed, 9 Feb 2022 11:59:44 +0100 Subject: [PATCH] Removed some debugging --- archinstall/lib/luks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archinstall/lib/luks.py b/archinstall/lib/luks.py index 9f5fc359..16ef9554 100644 --- a/archinstall/lib/luks.py +++ b/archinstall/lib/luks.py @@ -102,7 +102,7 @@ class luks2: 'luksFormat', partition.path, ]) - print(f"Looking for phrase: 'Enter passphrase for {partition.path}'") + # print(f"Looking for phrase: 'Enter passphrase for {partition.path}'") cryptworker = SysCommandWorker(cryptsetup_args, peak_output=True) pw_given = False @@ -181,7 +181,7 @@ class luks2: if '/' in mountpoint: os.path.basename(mountpoint) # TODO: Raise exception instead? - print(f"Looking for phrase: 'Enter passphrase for {partition.path}'") + # print(f"Looking for phrase: 'Enter passphrase for {partition.path}'") cryptworker = SysCommandWorker(f'/usr/bin/cryptsetup open {partition.path} {mountpoint} --type luks2', peak_output=True) pw_given = False