]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Tue, 3 Oct 2023 19:04:09 +0000 (21:04 +0200)
committerRoland Häder <roland@mxchange.org>
Tue, 3 Oct 2023 19:04:09 +0000 (21:04 +0200)
- local variable 'block' was defined only within the loop, not outside of it
- I actually have to use local variable 'blocker' instead

fba/commands.py

index ea96bf8a83c3475b00b3f3ec01a5862c4bc1313d..5589af7198a8d2629a5708581f7e37dba3ef125e 100644 (file)
@@ -443,7 +443,7 @@ def fetch_blocks(args: argparse.Namespace) -> int:
             logger.debug("Invoking cookies.clear(%s) ...", block["blocked"])
             cookies.clear(block["blocked"])
 
-        logger.info("blocker='%s' has %d obfuscated domain(s) and %d of them could be deobfuscated.", block["blocker"], obfuscated, deobfuscated)
+        logger.info("blocker='%s' has %d obfuscated domain(s) and %d of them could be deobfuscated.", blocker, obfuscated, deobfuscated)
 
         logger.debug("Checking if blocker='%s' has pending updates ...", blocker)
         if instances.has_pending(blocker):