03-11-2021, 06:56 AM
Native or flatpak? The readme mentions the '--debug [LEVEL]' command line option or an environment variable to set, which is easy for a native install but I don't know how it works for flatpak.
https://github.com/jkotra/eOVPN
The code getting the version is here:
https://github.com/jkotra/eOVPN/blob/mas...openvpn.py
See get_version(self) at line 172. It's trying to run 'openvpn --version' and find the version in the output using a regular expression. Is it unable to run the command (no openvpn in the path, sandboxing preventing it running, something else?) or does the response not contain a matching string? Or is there some other problem like a missing python library that's getting hidden by error trapping?
https://github.com/jkotra/eOVPN
The code getting the version is here:
https://github.com/jkotra/eOVPN/blob/mas...openvpn.py
See get_version(self) at line 172. It's trying to run 'openvpn --version' and find the version in the output using a regular expression. Is it unable to run the command (no openvpn in the path, sandboxing preventing it running, something else?) or does the response not contain a matching string? Or is there some other problem like a missing python library that's getting hidden by error trapping?