فهرست منبع

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: