| 145 |
| 146 |
| 147 |
| 148 |
| 149 |
| 150 |
| 151 |
| 152 | |
def rename(self, target, msg="renamed by py lib invocation"): |
""" rename this path to target with checkin message msg. """ |
if getattr(self, 'rev', None) is not None: |
raise py.error.EINVAL(self, "revisions are immutable") |
self._svncmdexecauth('svn move -m "%s" --force "%s" "%s"' %( |
msg, self._escape(self), self._escape(target))) |
-> self._norev_delentry(self.dirpath()) |
self._norev_delentry(self) | |