1
0
Fork 0
pukkandan 2023-04-24 17:21:20 +05:30
commit 78fde6e339
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
3 changed files with 3 additions and 2 deletions

View file

@ -243,7 +243,7 @@ def create_parser():
if multiple_keys:
allowed_keys = fr'({allowed_keys})(,({allowed_keys}))*'
mobj = re.match(
fr'(?i)(?P<keys>{allowed_keys}){delimiter}(?P<val>.*)$',
fr'(?is)(?P<keys>{allowed_keys}){delimiter}(?P<val>.*)$',
value[0] if multiple_args else value)
if mobj is not None:
keys, val = mobj.group('keys').split(','), mobj.group('val')