aboutsummaryrefslogtreecommitdiff
path: root/src/hydrilla/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/hydrilla/util')
-rw-r--r--src/hydrilla/util/_util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hydrilla/util/_util.py b/src/hydrilla/util/_util.py
index dc18fb9..778e78f 100644
--- a/src/hydrilla/util/_util.py
+++ b/src/hydrilla/util/_util.py
@@ -111,7 +111,7 @@ def version_string(ver: list[int], rev: Optional[int]=None) -> str:
return '.'.join([str(n) for n in ver]) + ('' if rev is None else f'-{rev}')
schemas = {}
-for path in (here.parent / 'schemas').glob('*-1.schema.json'):
+for path in (here.parent / 'schemas').glob('*-1.0.1.schema.json'):
schema = json.loads(path.read_text())
schemas[schema['$id']] = schema