Explorar el Código

Fix iteration over created files

dustin.born hace 6 años
padre
commit
dcfe640c06
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      code/Core/Controller.py

+ 1 - 1
code/Core/Controller.py

@@ -112,7 +112,7 @@ class Controller:
 
         # process/move other created files
         pcap_root = os.path.splitext(self.pcap_dest_path)[0]
-        for k, v in Util.MISC_OUT_FILES:
+        for k, v in Util.MISC_OUT_FILES.items():
             if v is None:
                 created_files.append(k)
             else: