Fix lint on OS X

This commit is contained in:
Florian Bruhin 2014-09-26 07:12:08 +02:00
parent b520b39206
commit 99da7b697b

View File

@ -166,6 +166,8 @@ def _os_info():
Return:
A list of lines with version info.
"""
# pylint has issues with platform.mac_ver()
# pylint: disable=unpacking-non-sequence
lines = []
releaseinfo = None
if sys.platform == 'linux':