set terse to True when calling platform.platform in test.pythoninfo (GH-7797)

This commit is contained in:
Xiang Zhang 2018-06-20 01:32:49 +08:00 committed by GitHub
parent 13c79c677f
commit 71ca738f4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -142,7 +142,7 @@ def collect_platform(info_add):
info_add('platform.python_implementation',
platform.python_implementation())
info_add('platform.platform',
platform.platform(aliased=True))
platform.platform(aliased=True, terse=True))
def collect_locale(info_add):