Bug #229280: remove '/' characters from the OS name (for BSD/OS :) )

This commit is contained in:
Andrew M. Kuchling 2001-02-27 19:25:42 +00:00
parent a34dbe0fdc
commit 83c158fdc9
1 changed files with 6 additions and 1 deletions

View File

@ -41,7 +41,12 @@ def get_platform ():
# Try to distinguish various flavours of Unix # Try to distinguish various flavours of Unix
(osname, host, release, version, machine) = os.uname() (osname, host, release, version, machine) = os.uname()
osname = string.lower(osname)
# Convert the OS name to lowercase and remove '/' characters
# (to accommodate BSD/OS)
osname = string.lower(osname)
osname = string.replace(osname, '/', '')
if osname[:5] == "linux": if osname[:5] == "linux":
# At least on Linux/Intel, 'machine' is the processor -- # At least on Linux/Intel, 'machine' is the processor --
# i386, etc. # i386, etc.