(self)
| 1649 | |
| 1650 | |
| 1651 | def get_task_assets_cache(self): |
| 1652 | if self.id is None: |
| 1653 | return None |
| 1654 | return os.path.join(settings.MEDIA_CACHE, "task_assets", str(self.id)) |
| 1655 | |
| 1656 | def clear_task_assets_cache(self): |
| 1657 | d = self.get_task_assets_cache() |
no outgoing calls