def isApplicable(self, context):
     applicable = ConfigBasedPlugin.isApplicable(self, context)
     # if top-level plug-in cannot find process path
     # - use default one on *nix machines
     if (self.defaultUnixProcessPath and (not applicable)
             and (not context.client.isWinOs())):
         self.processPath = self.defaultUnixProcessPath
         applicable = 1
     return applicable
 def isApplicable(self, context):
     applicable = ConfigBasedPlugin.isApplicable(self, context)
     # if top-level plug-in cannot find process path
     # - use default one on *nix machines
     if (self.defaultUnixProcessPath
         and (not applicable)
         and (not context.client.isWinOs())):
         self.processPath = self.defaultUnixProcessPath
         applicable = 1
     return applicable