Skip to content

Commit

Permalink
Merge pull request #96 from altf4arnold/fix
Browse files Browse the repository at this point in the history
bad DB key
  • Loading branch information
altf4arnold authored Aug 2, 2024
2 parents 8ccce76 + ee90b8e commit 4b09655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atlas/atlascreator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4b09655

Please sign in to comment.