| Conditions | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | """Command object |
||
| 36 | def get_file(self): |
||
| 37 | """Retrieve file from redis and unzip it to the local filesystem |
||
| 38 | """ |
||
| 39 | # Get hash from redis |
||
| 40 | self.logger.debug("Retrieving "+self.filename+"...") |
||
| 41 | self.fman.retrieve_file(self.filename) |
||
| 42 | |||
| 43 | # Write it in the tmp folder |
||
| 44 | self._unzip_file() |
||
| 45 | |||
| 72 |