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
.
This commit is contained in:
parent
1728f9bba7
commit
b2e39265e1
1 changed files with 2 additions and 1 deletions
|
@ -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…
Reference in a new issue