From: Fred Wright Date: Tue, 19 Jan 2021 22:03:34 +0000 (-0800) Subject: [FIX] Fix multi-individual ancestor download. X-Git-Url: https://git.nutra.tk/v2?a=commitdiff_plain;h=7f68a49b1875124b03e9a41d9648003f78b3cd76;p=gamesguru%2Fgetmyancestors.git [FIX] Fix multi-individual ancestor download. The 'todo' variable for the ancestor download needs to be a set, not the original comma-separated string. TESTED: Downloads of multiple individuals now include ancestors when appropriate. --- diff --git a/getmyancestors.py b/getmyancestors.py index a121a32..86c29df 100755 --- a/getmyancestors.py +++ b/getmyancestors.py @@ -1214,7 +1214,7 @@ def main(): tree.add_indis(todo) # download ancestors - todo = set(todo) + todo = set(tree.indi.keys()) done = set() for i in range(args.ascend): if not todo: