This commit is contained in:
Aevann1 2022-01-07 23:03:14 +02:00
parent e79a4ba4d0
commit c6ad62cfc8
17 changed files with 57 additions and 56 deletions

View file

@ -276,7 +276,7 @@ def get_comments(cids, v=None, load_parent=False):
def get_domain(s):
parts = s.split(".")
domain_list = set([])
domain_list = set()
for i in range(len(parts)):
new_domain = parts[i]
for j in range(i + 1, len(parts)):