Use correct var

This commit is contained in:
moanos [he/him] 2023-07-13 11:34:42 +02:00
parent b5bb6f8480
commit 3d0854ac4c

View File

@ -76,7 +76,7 @@ def merge(input_file, merge_target, format: str = "toml", private: bool = False,
continue continue
# Check if there is a domain in the merge target where the input domain is similar # Check if there is a domain in the merge target where the input domain is similar
try: try:
merge_target_instance = [merge_target_instance for merge_target_instance in merge_target if input_instance.domain == merge_target_instance.domain][0] merge_target_instance = [merge_target_instance for merge_target_instance in merge_target_blocklist if input_instance.domain == merge_target_instance.domain][0]
if not overwrite: if not overwrite:
key_input = "" key_input = ""
while key_input not in ("i", "O"): while key_input not in ("i", "O"):