forked from p34709852/monkey
fix
This commit is contained in:
parent
6d5d8595a0
commit
cdadb32ff0
|
@ -207,7 +207,7 @@ class Machine(object):
|
|||
def GetCriticalServicesInstalled(self):
|
||||
def IsNameOfCriticalService(name):
|
||||
services = ("W3svc", "MSExchangeServiceHost", "MSSQLServer")
|
||||
services = map(string.lower, services)
|
||||
services = map(str.lower, services)
|
||||
|
||||
if not name:
|
||||
return False
|
||||
|
|
Loading…
Reference in New Issue