def delete_list(self, paths):
     for path in paths:
         if path in self._exclusion_list:
             raise Exception("File is not SCM managed: " + path)
     return MockSCM.delete_list(self, paths)
 def delete_list(self, paths):
     for path in paths:
         if path in self._exclusion_list:
             raise Exception("File is not SCM managed: " + path)
     return MockSCM.delete_list(self, paths)