| 127 |
| 128 |
| 129 |
| 130 |
| 131 |
| 132 |
| 133 | |
def remove(self, rec=1, msg='removed by py lib invocation'): |
""" remove a file or directory (or a directory tree if rec=1) with |
checkin message msg.""" |
if self.rev is not None: |
raise py.error.EINVAL(self, "revisions are immutable") |
-> process.cmdexec('svn rm -m "%s" "%s"' %(msg, self._escape(self))) |
self._lsnorevcache.delentry(self.dirpath().strpath) | |