(self, other)
| 92 | self.touched_files = [] |
| 93 | |
| 94 | def append(self, other): |
| 95 | self.added_files.extend(other.added_files) |
| 96 | self.removed_files.extend(other.removed_files) |
| 97 | self.modified_files.extend(other.modified_files) |
| 98 | self.touched_files.extend(other.touched_files) |
| 99 | |
| 100 | def ignore_directories(self): |
| 101 | """Removes directories from our lists of found differences.""" |
no outgoing calls