Fix spelling in chia show -w

This commit is contained in:
Gene Hoffman 2020-09-14 09:32:09 -07:00 committed by Gene Hoffman
parent 73a4cf501f
commit 21f16ddc96
2 changed files with 2 additions and 2 deletions

View File

@ -200,7 +200,7 @@ const plot_size_options = [
{ label: "11.5GiB", value: 29, workspace: "41.1GiB" },
{ label: "23.8GiB", value: 30, workspace: "77.3GiB" },
{ label: "49.1GiB", value: 31, workspace: "145GiB" },
{ label: "101.4GiB", value: 32, workspace: "297GiB" },
{ label: "101.4GiB", value: 32, workspace: "313GiB" },
// workspace are guesses using 55.35% - rounded up - past here
{ label: "208.8GiB", value: 33, workspace: "606GiB" },
{ label: "429.8GiB", value: 34, workspace: "1266GiB" },

View File

@ -340,7 +340,7 @@ async def show_async(args, parser):
print(f"{i+1}) {fp[0]}")
val = None
while val is None:
val = input("Enter number to pick press q to quite: ")
val = input("Enter a number to pick or q to quit: ")
if val == "q":
return
if not val.isdigit():