Rename 'targetdevice' to 'blockdevice' to be compliant with steps

This commit is contained in:
maride 2018-02-02 16:29:48 +01:00
parent b0c9ab111c
commit b0f3d0de65

2
run.py
View File

@ -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):