This commit is contained in:
Oran Nadler 2018-04-17 12:49:14 +03:00
parent 6d5d8595a0
commit cdadb32ff0
1 changed files with 1 additions and 1 deletions

View File

@ -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