From 424505c70c52483fc9868d19d930e5e431b31d28 Mon Sep 17 00:00:00 2001 From: Josh Date: Mon, 6 Jan 2025 18:19:41 -0600 Subject: [PATCH] change table name --- crates/djls-template-ast/src/tagspecs.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/djls-template-ast/src/tagspecs.rs b/crates/djls-template-ast/src/tagspecs.rs index 7b1f55d..6026e42 100644 --- a/crates/djls-template-ast/src/tagspecs.rs +++ b/crates/djls-template-ast/src/tagspecs.rs @@ -57,9 +57,9 @@ impl TagSpecs { if path.exists() { return match file { "pyproject.toml" => { - Self::load_from_toml(&path, &["tool", "djls", "template", "tags"]) + Self::load_from_toml(&path, &["tool", "djls", "tagspecs"]) } - _ => Self::load_from_toml(&path, &[]), // Root level for other files + _ => Self::load_from_toml(&path, &["tagspecs"]), // Root level for other files }; } }