Skip to content

Commit 66e7e6c

Browse files
committed
fix csv paths
1 parent b9c2fd3 commit 66e7e6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sphinx/src/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,10 +351,10 @@ def get_formated_names(path_file):
351351
current_file = os.path.dirname(__file__)
352352
context = app.config.html_context
353353
context["core_members"] = get_formated_names(
354-
os.path.join(current_file, "core.csv")
354+
os.path.join(current_file, "..", "..", "src", "core.csv")
355355
)
356356
context["emeritus_members"] = get_formated_names(
357-
os.path.join(current_file, "emeritus.csv")
357+
os.path.join(current_file, "..", "..", "src", "emeritus.csv")
358358
)
359359
rendered = app.builder.templates.render_string(src, context)
360360
source[0] = rendered

0 commit comments

Comments
 (0)