Renamed variable OS to os_name
Variable OS should be in lowercase.
This commit is contained in:
parent
d03767bbe2
commit
997f5b27c5
@ -42,16 +42,16 @@ def get_os_name():
|
|||||||
proper name capitalisation.
|
proper name capitalisation.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
OS = platform.system().lower()
|
os_name = platform.system().lower()
|
||||||
|
|
||||||
if OS.startswith('linux'):
|
if os_name.startswith('linux'):
|
||||||
DISTRO = platform.linux_distribution()[0]
|
DISTRO = platform.linux_distribution()[0]
|
||||||
if DISTRO:
|
if DISTRO:
|
||||||
OS = OS + "-%s" % DISTRO.split()[0].lower()
|
os_name = os_name + "-%s" % DISTRO.split()[0].lower()
|
||||||
if os.path.exists('/etc/arch-release'):
|
if os.path.exists('/etc/arch-release'):
|
||||||
OS = "linux-arch"
|
os_name = "linux-arch"
|
||||||
|
|
||||||
return OS
|
return os_name
|
||||||
|
|
||||||
|
|
||||||
def get_os_sslcertfile_searchpath():
|
def get_os_sslcertfile_searchpath():
|
||||||
|
Loading…
Reference in New Issue
Block a user