mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Stop using deprecated distro.linux_distribution() (#1421)
This commit is contained in:
parent
5d093e1142
commit
56e6778468
1 changed files with 3 additions and 2 deletions
|
@ -290,8 +290,9 @@ def platDesc() -> str:
|
|||
elif system == "Linux":
|
||||
import distro # pytype: disable=import-error # pylint: disable=import-error
|
||||
|
||||
r = distro.linux_distribution(full_distribution_name=False)
|
||||
theos = f"lin:{r[0]}:{r[1]}"
|
||||
dist_id = distro.id()
|
||||
dist_version = distro.version()
|
||||
theos = f"lin:{dist_id}:{dist_version}"
|
||||
else:
|
||||
theos = system
|
||||
break
|
||||
|
|
Loading…
Reference in a new issue