Renamed variable DISTRO to distro_name

Variable DISTRO should be lowercase. I renamed it to distro_name.
This commit is contained in:
Rodolfo García Peñas (kix) 2020-10-25 13:44:53 +01:00
parent 997f5b27c5
commit faff27f0c9

View File

@ -45,9 +45,9 @@ def get_os_name():
os_name = platform.system().lower()
if os_name.startswith('linux'):
DISTRO = platform.linux_distribution()[0]
if DISTRO:
os_name = os_name + "-%s" % DISTRO.split()[0].lower()
distro_name = platform.linux_distribution()[0]
if distro_name:
os_name = os_name + "-%s" % distro_name.split()[0].lower()
if os.path.exists('/etc/arch-release'):
os_name = "linux-arch"