Commit e8dd31aa authored by Sean Reifscheider's avatar Sean Reifscheider

issue1082: Fixing system and platform names for Vista.

parent 1644e6eb
......@@ -1027,6 +1027,12 @@ def uname():
machine = ''
if processor == 'unknown':
processor = ''
# normalize name
if system == 'Microsoft' and release == 'Windows':
system = 'Windows'
release = 'Vista'
_uname_cache = system,node,release,version,machine,processor
return _uname_cache
......
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