(self, dst)
| 686 | return self.chroot |
| 687 | |
| 688 | def _normalize(self, dst): |
| 689 | # type: (str) -> str |
| 690 | dst = os.path.normpath(dst) |
| 691 | if dst.startswith(os.sep) or dst.startswith(".."): |
| 692 | raise self.Error("Destination path is not a relative path!") |
| 693 | return dst |
| 694 | |
| 695 | def _check_tag( |
| 696 | self, |