Fix htmldocck function

This commit is contained in:
Guillaume Gomez 2024-05-17 00:50:11 +02:00
parent d594c9ceea
commit 61d4f5c53b

View File

@ -66,7 +66,7 @@ pub fn python_command() -> Command {
pub fn htmldocck() -> Command {
let mut python = python_command();
python.arg(source_path().join("/src/etc/htmldocck.py"));
python.arg(source_path().join("src/etc/htmldocck.py"));
python
}