From 7ebda6caf7e942351726900fb6de7ed25a959327 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Riette?= <sebastien.riette@meteo.fr> Date: Tue, 21 Jun 2022 17:41:17 +0200 Subject: [PATCH] Allow _ in array names --- verify_mnh_expand.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/verify_mnh_expand.py b/verify_mnh_expand.py index 0c9e61b7b..854eb445d 100755 --- a/verify_mnh_expand.py +++ b/verify_mnh_expand.py @@ -18,7 +18,7 @@ def verify_mnh_expand(path): the instruction will no be checked - one-line version of IF or WHERE statement are really on one line (no continuation line) """ - lhschar = b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890(:)%, \t' + lhschar = b'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890_(:)%, \t' if os.path.isdir(path): logging.info("Enters directory: " + path) -- GitLab