Blocks have been removed

This commit is contained in:
Daniel Markstedt 2021-09-23 17:28:22 -07:00
parent 7b8a5f6c76
commit eaa7257b25

View File

@ -138,7 +138,6 @@ def drive_create():
vendor = request.form.get("vendor") vendor = request.form.get("vendor")
product = request.form.get("product") product = request.form.get("product")
revision = request.form.get("revision") revision = request.form.get("revision")
blocks = request.form.get("blocks")
block_size = request.form.get("block_size") block_size = request.form.get("block_size")
size = request.form.get("size") size = request.form.get("size")
file_type = request.form.get("file_type") file_type = request.form.get("file_type")
@ -157,8 +156,8 @@ def drive_create():
# Creating the drive properties file # Creating the drive properties file
from pathlib import Path from pathlib import Path
file_name = str(Path(file_name).stem) + "." + PROPERTIES_SUFFIX file_name = str(Path(file_name).stem) + "." + PROPERTIES_SUFFIX
properties = {"vendor": vendor, "product": product, "revision": revision, \ properties = {"vendor": vendor, "product": product, \
"blocks": blocks, "block_size": block_size} "revision": revision, "block_size": block_size}
process = write_drive_properties(file_name, properties) process = write_drive_properties(file_name, properties)
if process["status"] == True: if process["status"] == True:
flash(f"Drive properties file {file_name} created") flash(f"Drive properties file {file_name} created")