From c12fbc900a10501f16dc59ef12ce43693556a1bf Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Wed, 9 Feb 2022 11:53:19 +0100 Subject: [PATCH] Forgot =True to parameter --- archinstall/lib/luks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/lib/luks.py b/archinstall/lib/luks.py index a8717143..6ab54bde 100644 --- a/archinstall/lib/luks.py +++ b/archinstall/lib/luks.py @@ -182,7 +182,7 @@ class luks2: os.path.basename(mountpoint) # TODO: Raise exception instead? print(f"Looking for phrase: 'Enter passphrase for {partition.path}'") - cryptworker = SysCommandWorker(f'/usr/bin/cryptsetup open {partition.path} {mountpoint} --type luks2', peak_output) + cryptworker = SysCommandWorker(f'/usr/bin/cryptsetup open {partition.path} {mountpoint} --type luks2', peak_output=True) pw_given = False while cryptworker.is_alive():