Handle a case when spind doesn't return results

This commit is contained in:
usov_i 2020-12-15 14:28:33 +01:00
parent 1f1762063d
commit 0a634ca8da

View File

@ -73,8 +73,11 @@ def create():
check=True, check=True,
) )
with open(os.path.join(temp_dir, "spind.txt")) as f_out: try:
output_textarea.value = f_out.readlines() with open(os.path.join(temp_dir, "spind.txt")) as f_out:
output_textarea.value = f_out.readlines()
except FileNotFoundError:
print("No results from spind")
process_button = Button(label="Process", button_type="primary") process_button = Button(label="Process", button_type="primary")
process_button.on_click(process_button_callback) process_button.on_click(process_button_callback)