瀏覽代碼

Fix iteration over created files

dustin.born 6 年之前
父節點
當前提交
dcfe640c06
共有 1 個文件被更改,包括 1 次插入1 次删除
  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: