Merge pull request #639 from tgolly/devel

distutils is not available on some non-Linux OS's
This commit is contained in:
Toshio Kuratomi 2015-01-22 21:49:17 -08:00
commit effdba95de

View file

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