forked from p15670423/monkey
Common: Change CustomPBAConfigriguration's filename validation to allow empty strings
This commit is contained in:
parent
626720ff9f
commit
bcf7a2e8ff
|
@ -15,7 +15,7 @@ from .agent_sub_configurations import (
|
|||
)
|
||||
from .utils import freeze_lists
|
||||
|
||||
valid_custom_pba_filename_regex = re.compile(r"^([a-zA-Z0-9\ \._-]+)$")
|
||||
valid_custom_pba_filename_regex = re.compile(r"^([a-zA-Z0-9\ \._-]*)$")
|
||||
|
||||
|
||||
class CustomPBAConfigurationSchema(Schema):
|
||||
|
|
Loading…
Reference in New Issue