219 if host.startswith("."): |
219 if host.startswith("."): |
220 otherRule = host[1:] |
220 otherRule = host[1:] |
221 else: |
221 else: |
222 otherRule = '.' + host |
222 otherRule = '.' + host |
223 if otherRule in addList: |
223 if otherRule in addList: |
224 addList.removeOne(otherRule) |
224 addList.remove(otherRule) |
225 if otherRule in removeList1: |
225 if otherRule in removeList1: |
226 removeList1.remove(otherRule) |
226 removeList1.remove(otherRule) |
227 if otherRule in removeList2: |
227 if otherRule in removeList2: |
228 removeList2.remove(otherRule) |
228 removeList2.remove(otherRule) |
229 |
229 |