From 1529f8c02fdd92f92b90a5f2ea0d53e0c4487aa0 Mon Sep 17 00:00:00 2001 From: Nathan van Beelen Date: Wed, 28 Feb 2024 14:05:46 +0100 Subject: [PATCH] Reflect change of file location in code --- sashimi/gui/save_settings_gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sashimi/gui/save_settings_gui.py b/sashimi/gui/save_settings_gui.py index 4fcfd0f5..6071b6c1 100644 --- a/sashimi/gui/save_settings_gui.py +++ b/sashimi/gui/save_settings_gui.py @@ -32,7 +32,7 @@ def __init__(self, st: State): self.setLayout(QVBoxLayout()) parent_dir = (Path(__file__).parents[2]).resolve() - with open(parent_dir / "lightsheet_procedure.md") as f: + with open(parent_dir / "notebooks" / "lightsheet_procedure.md") as f: instructions = f.read() self.html_markdown = markdown.markdown(instructions) self.instructions = QTextEdit(self.html_markdown)