Browse Source

another fix

Blake Blackshear 4 years ago
parent
commit
5db7b242aa
1 changed files with 1 additions and 1 deletions
  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: