def localRootValid()

in GuestivusLib/GuestivusLib.py [0:0]


    def localRootValid(self):
        self.error = ""
        rootValid = self.localRoot or not (self.localRoot.isspace())

        if(not rootValid):
            self.error = errors.localPathNotSet
            return(False)

        return(True)