Fix 3857 name regex
parent
9549c66a56
commit
950931144f
|
@ -145,7 +145,7 @@ except ImportError:
|
|||
pass
|
||||
|
||||
|
||||
NAME_PATTERN = re.compile(r"^[a-zA-Z0-9_]{1,61}[a-z0-9_]$")
|
||||
NAME_PATTERN = re.compile(r"^[a-zA-Z0-9]+[a-zA-Z0-9\._-]+[a-zA-Z0-9_]+$")
|
||||
|
||||
|
||||
def virtual_network_to_dict(vnet):
|
||||
|
|
Loading…
Reference in New Issue