Kathara
Kathara copied to clipboard
Env Regex Match failure
in the machine.py
file
the regex for env
is ^(?P<key>\w+)=(?P<value>\w+)$
which does not accurately match IP addresses as a value. I don't think IP addresses will ever be a key.
the following worked for me
^(?P<key>\w+)=(?P<value>\w+.*)$
Hi @zhangineer, thanks for the issue. I'll open a branch and fix the regex.
Mariano.
Hi @zhangineer,
you can find the fix in the develop
branch. We'll merge it in the next release.
Thanks!