diff --git a/bots/zephyr_mirror_backend.py b/bots/zephyr_mirror_backend.py index 29e7e6f..a3f05f4 100755 --- a/bots/zephyr_mirror_backend.py +++ b/bots/zephyr_mirror_backend.py @@ -313,7 +313,7 @@ def parse_crypt_table(zephyr_class, instance): if line.strip() == "": # Ignore blank lines continue - match = re.match("^crypt-(?P[^:]+):\s+((?P(AES|DES)):\s+)?(?P\S+)$", line) + match = re.match("^crypt-(?P\S+):\s+((?P(AES|DES)):\s+)?(?P\S+)$", line) if match is None: # Malformed crypt_table line logger.debug("Invalid crypt_table line!")