소스 검색

another fix

Blake Blackshear 4 년 전
부모
커밋
5db7b242aa
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      frigate/events.py

+ 1 - 1
frigate/events.py

@@ -130,7 +130,7 @@ class EventProcessor(threading.Thread):
             return
         
         with open(f"{os.path.join(self.clip_dir, clip_name)}.json", 'w') as outfile:
-            json.dump({x: event_data[x] for x in event_data if x not in ['frame']}), outfile)
+            json.dump({x: event_data[x] for x in event_data if x not in ['frame']}, outfile)
 
     def run(self):
         while True: