diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-24 20:20:18 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-24 20:20:18 (GMT) |
commit | ab88803a8addf36ae3fc7e9270ebbed869f7f191 (patch) | |
tree | 92e96ed10dd4a43130abe55531e3e82e79295a42 /Lib/platform.py | |
parent | 488fccfaaf0afb432c9131ad40eb81e517316fbc (diff) | |
download | cpython-ab88803a8addf36ae3fc7e9270ebbed869f7f191.zip cpython-ab88803a8addf36ae3fc7e9270ebbed869f7f191.tar.gz cpython-ab88803a8addf36ae3fc7e9270ebbed869f7f191.tar.bz2 |
Support Mageia Linux in the platform module.
Diffstat (limited to 'Lib/platform.py')
-rwxr-xr-x | Lib/platform.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/platform.py b/Lib/platform.py index 6255353..3cb7c3e 100755 --- a/Lib/platform.py +++ b/Lib/platform.py @@ -260,7 +260,7 @@ _release_version = re.compile(r'([^0-9]+)' _supported_dists = ( 'SuSE', 'debian', 'fedora', 'redhat', 'centos', 'mandrake', 'mandriva', 'rocks', 'slackware', 'yellowdog', 'gentoo', - 'UnitedLinux', 'turbolinux', 'arch') + 'UnitedLinux', 'turbolinux', 'arch', 'mageia') def _parse_release_file(firstline): |