From b0f3d0de65d499bcf18d46819e3454d14ed5fbde Mon Sep 17 00:00:00 2001 From: maride Date: Fri, 2 Feb 2018 16:29:48 +0100 Subject: [PATCH] Rename 'targetdevice' to 'blockdevice' to be compliant with steps --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index 881eec5..aa2fe0c 100755 --- a/run.py +++ b/run.py @@ -39,7 +39,7 @@ def blockdevice(termsize, settings): print("Please enter the full path to the block device the installation should take place on: (e.g. /dev/sda)") print("Make sure to choose a drive, not a partition.") print("Here's a list of devices that may be the right:") - settings["targetdevice"] = _ask("Install where?", os.listdir("/sys/block/")) + settings["blockdevice"] = _ask("Install where?", os.listdir("/sys/block/")) def checks(termsize, settings):