Merge pull request #96 from altf4arnold/fix

bad DB key
This commit is contained in:
Arnold Dechamps 2024-08-02 23:22:00 +02:00 committed by GitHub
commit 4b09655f5f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -95,7 +95,7 @@ def main():
db = TLD.objects.get(tld=tld)
tldslist.append(db.tld)
for tld in tldslist:
db = TLD.objects.get(unicodetld=tld)
db = TLD.objects.get(tld=tld)
if db.atlasv4 is None:
webrequest(tld, 4)
if db.atlasv6 is None: