]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Wed, 29 Nov 2023 22:35:20 +0000 (23:35 +0100)
committerRoland Häder <roland@mxchange.org>
Wed, 29 Nov 2023 22:35:20 +0000 (23:35 +0100)
- ops, one parameter 'key' to much ...

fba/models/instances.py

index 8a46dcb9d214a39c152d8e1e18d93ad97a906cd2..36260132ab5ac063c2119712dce8d10cea7642f0 100644 (file)
@@ -106,7 +106,7 @@ def has_pending(domain: str) -> bool:
     has = False
     logger.debug("Checking %d _pending array elements ...", len(_pending))
     for key in _pending:
-        logger.debug("domain='%s',_pending[%s]()=%d", key, domain, key, len(_pending[key]))
+        logger.debug("domain='%s',_pending[%s]()=%d", domain, key, len(_pending[key]))
         if domain in _pending[key]:
             logger.debug("domain='%s' at key='%s' has pending data ...", domain, key)
             has = True