1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-03-22 19:40:07 +00:00

extend allowed alphabet for key

This commit is contained in:
deadc0de6
2024-11-08 16:50:58 +01:00
committed by deadc0de
parent 72f5b9482e
commit f50f3ecdb6

View File

@@ -25,7 +25,7 @@ from dotdrop.exceptions import UndefinedException, YamlException, \
TILD = '~' TILD = '~'
YAML_OK = r'[^0-9a-zA-Z.\-_]+' YAML_OK = r'[^0-9a-zA-Z.\-_+]+'
YAML_REPL = '_' YAML_REPL = '_'