| 137 |
| 138 |
| 139 |
| 140 |
| 141 |
| 142 |
| 143 | |
def copy(self, target, msg='copied by py lib invocation'): |
""" copy path to target with checkin message msg.""" |
if getattr(target, 'rev', None) is not None: |
raise py.error.EINVAL(target, "revisions are immutable") |
self._svncmdexecauth('svn copy -m "%s" "%s" "%s"' %(msg, |
-> self._escape(self), self._escape(target))) |
self._norev_delentry(target.dirpath()) | |