(self)
| 64 | self._batPathFp.close() |
| 65 | |
| 66 | def _createRemoteBatchFile(self): |
| 67 | logger.debug("creating batch file '%s'" % self._batPathRemote) |
| 68 | |
| 69 | self._createLocalBatchFile() |
| 70 | self.writeFile(self._batPathLocal, self._batPathRemote, "text", forceCheck=True) |
| 71 | |
| 72 | os.unlink(self._batPathLocal) |
| 73 | |
| 74 | def readRegKey(self, regKey, regValue, parse=False): |
| 75 | self._operation = REGISTRY_OPERATION.READ |
no test coverage detected