| branch | devel |
| changeset 193 | e5ec4bfa4929 |
| parent 192 | 6c708c334f37 |
| child 198 | 85ede27b1add |
| 192:6c708c334f37 | 193:e5ec4bfa4929 |
|---|---|
44 return False |
44 return False |
45 |
45 |
46 if len(self.attachments) != len(other.attachments): |
46 if len(self.attachments) != len(other.attachments): |
47 return False |
47 return False |
48 |
48 |
49 for i in range(len(self.attachments)): |
49 for a in self.attachments: |
50 if self.attachments[i] != other.attachments[i]: |
50 if a not in other.attachments: |
51 return False |
51 return False |
52 return True |
52 return True |
53 |
53 |
54 |
54 |
55 |
55 |