(func, path, exc_info)
| 159 | self.errorOnRemove = None |
| 160 | |
| 161 | def handlerError(func, path, exc_info): |
| 162 | self._logger.error("Unable to remove assets from [%s], path '%s': %s" % (tId, path, exc_info[1][1])) |
| 163 | self.errorOnRemove = "Error removing assets from '%s': [%s]" % (path, exc_info[1][1]) |
| 164 | |
| 165 | # Check if task file exists => remove it |
| 166 | if os.path.exists(taskPath) and os.path.isfile(taskPath): |