diff --git a/flake8/engine.py b/flake8/engine.py index 8d1ac08..3838d35 100644 --- a/flake8/engine.py +++ b/flake8/engine.py @@ -85,8 +85,9 @@ def get_style_guide(**kwargs): def get_python_version(): + # The implementation isn't all that important. try: - impl = platform.python_implementation() + impl = platform.python_implementation() + " " except AttributeError: # Python 2.5 - impl = 'Python' - return '%s %s on %s' % (impl, platform.python_version(), platform.system()) + impl = '' + return '%s%s on %s' % (impl, platform.python_version(), platform.system())