Changeset View
Changeset View
Standalone View
Standalone View
netrender/master.py
| Context not available. | |||||
| def updateStatus(self): | def updateStatus(self): | ||||
| self.found = os.path.exists(self.filepath) | self.found = os.path.exists(self.filepath) | ||||
| if self.found and self.signature != None: | if self.found and self.signature is not None: | ||||
| found_signature = hashFile(self.filepath) | found_signature = hashFile(self.filepath) | ||||
| self.found = self.signature == found_signature | self.found = self.signature == found_signature | ||||
| if not self.found: | if not self.found: | ||||
| Context not available. | |||||