cookies: increase candidate list with dot prefixed domains

This commit is contained in:
Daniel Graña 2013-04-24 16:22:40 -03:00
parent 31bec08a39
commit 32b781a1b8
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ def potential_domain_matches(domain):
start = domain.index('.', start) + 1
except ValueError:
pass
return matches
return matches + ['.' + d for d in matches]
class _DummyLock(object):
def acquire(self):