]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sun, 22 Oct 2023 12:59:19 +0000 (14:59 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 22 Oct 2023 12:59:19 +0000 (14:59 +0200)
- wrong place to alias, this way all *key software became misskey and no other
  would be checked

fba/commands.py

index c047597d4703d0a7f7945dd4911a9a781a95a441..df6677fcd513d8ae34c51c92f68c419fc39d2f9f 100644 (file)
@@ -515,9 +515,7 @@ def fetch_observer(args: argparse.Namespace) -> int:
 
     logger.info("Fetching %d different table data ...", len(types))
     for software in types:
-        logger.debug("software='%s' - BEFORE!", software)
-        software = software_helper.alias(software)
-        logger.debug("software='%s' - AFTER!", software)
+        logger.debug("software='%s'", software)
 
         if args.software is not None and args.software != software:
             logger.debug("args.software='%s' does not match software='%s' - SKIPPED!", args.software, software)