(self, tarinfo, path)
| 766 | |
| 767 | class LinkFallbackError(FilterError): |
| 768 | def __init__(self, tarinfo, path): |
| 769 | self.tarinfo = tarinfo |
| 770 | self._path = path |
| 771 | super().__init__(f'link {tarinfo.name!r} would be extracted as a ' |
| 772 | + f'copy of {path!r}, which was rejected') |
| 773 | |
| 774 | # Errors caused by filters -- both "fatal" and "non-fatal" -- that |
| 775 | # we consider to be issues with the argument, rather than a bug in the |