diff --git a/svn/local.py b/svn/local.py index bb03fd5..5b34fc7 100644 --- a/svn/local.py +++ b/svn/local.py @@ -22,7 +22,13 @@ def add(self, rel_path): 'add', [rel_path], wd=self.path) - + + def delete(self, rel_path): + self.run_command( + 'delete', + [rel_path], + wd=self.path) + def commit(self, message, rel_filepaths=[]): args = ['-m', message] + rel_filepaths