Commit 6ce00b44 authored by Greg Ward's avatar Greg Ward

Tweaked 'get_platform()' to include the first character of the OS release:

eg. sunos5, linux2, irix5.
parent 7d51034e
......@@ -545,10 +545,8 @@ def get_platform ():
i.e. "???" or "???"."""
if os.name == 'posix':
uname = os.uname()
OS = uname[0]
arch = uname[4]
return "%s-%s" % (string.lower (OS), string.lower (arch))
(OS, _, rel, _, arch) = os.uname()
return "%s%c-%s" % (string.lower (OS), rel[0], string.lower (arch))
else:
return sys.platform
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment