(remote_path_to)
| 550 | def copy(self, remote_path_from, remote_path_to): |
| 551 | |
| 552 | def header(remote_path_to): |
| 553 | |
| 554 | path = Urn(remote_path_to).path() |
| 555 | destination = "{root}{path}".format(root=self.webdav.root, path=path) |
| 556 | header_item = "Destination: {destination}".format(destination=destination) |
| 557 | |
| 558 | header = self.get_header('copy') |
| 559 | header.append(header_item) |
| 560 | |
| 561 | return header |
| 562 | |
| 563 | try: |
| 564 | urn_from = Urn(remote_path_from) |
nothing calls this directly
no test coverage detected