Load distutils on all platforms EXCEPT Solaris.

Solaris doesn't ship distutils with with the default Python package.  This patch fixes "service" on Solaris since 30d6713.
pull/18777/head
Tim G 10 years ago committed by Matt Clay
parent 1728f9bba7
commit b2e39265e1

@ -106,7 +106,8 @@ import select
import time
import string
if platform.system() == 'Linux':
# The distutils module is not shipped with SUNWPython on Solaris.
if platform.system() != 'SunOS':
from distutils.version import LooseVersion
class Service(object):

Loading…
Cancel
Save