master-shell: replace tabs with spaces in manifest

This commit is contained in:
Drew DeVault 2020-07-30 17:21:34 -04:00
parent 01748821e1
commit b203d0274a
1 changed files with 1 additions and 0 deletions

View File

@ -38,6 +38,7 @@ if cmd[0] == "submit":
if os.isatty(sys.stdin.fileno()):
print("Enter build manifest:")
_manifest = sys.stdin.read()
_manifest = _manifest.replace("\t", " ") # Appease YAML
try:
manifest = Manifest(yaml.safe_load(_manifest))
except Exception as ex: