You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Arch doesn't have releases
> if sysinfo["distribution"] == "arch":
E KeyError: 'distribution'
venv/lib/python3.8/site-packages/testinfra/modules/systeminfo.py:82: KeyError
This line 82 should be changed to:
if "distribution" in sysinfo and sysinfo["distribution"] == "arch":
I will open a PR for that.
The text was updated successfully, but these errors were encountered:
affected version: 7.0.0
This line 82 should be changed to:
if "distribution" in sysinfo and sysinfo["distribution"] == "arch":
I will open a PR for that.
The text was updated successfully, but these errors were encountered: