[fix] Unreverse apply prompt actions

This commit is contained in:
William Wernert
2021-02-22 15:43:56 -05:00
parent e9b85337ff
commit b00cc88801

View File

@@ -49,9 +49,9 @@ def check_apply(args: dict, prompt: bool = True):
while answer.lower() not in [ 'y', 'n', '' ]:
answer = input(message)
if answer.lower() in [ 'n', '' ]:
return subprocess.run(cmd_arr)
else:
return 0
else:
return subprocess.run(cmd_arr)
else:
return 0