commit 74fcf3c959abed48cf63725a1962a1477f62644e parent 4dcd6dee39abc61d4413b7f449054b0dfa78714b Author: lash <dev@holbrook.no> Date: Thu, 31 Mar 2022 16:00:27 +0000 Add dot to name check Diffstat:
M | shep/state.py | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/shep/state.py b/shep/state.py @@ -13,7 +13,7 @@ from shep.error import ( ) -re_name = r'^[a-zA-Z_]+$' +re_name = r'^[a-zA-Z_\.]+$' class State: """State is an in-memory bitmasked state store for key-value pairs, or even just keys alone.