From 25595a766d7e88fc3925b3034cf16c66373cbe19 Mon Sep 17 00:00:00 2001 From: Mike Lang Date: Mon, 10 Oct 2022 14:48:39 +1100 Subject: [PATCH] Fix syntax error --- cutter/cutter/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cutter/cutter/main.py b/cutter/cutter/main.py index a94d1ca..5981204 100644 --- a/cutter/cutter/main.py +++ b/cutter/cutter/main.py @@ -733,7 +733,7 @@ class VideoUpdater(object): updates = {} try: # Update video metadata - tags = list(set(self.tags + job.video_tags) + tags = list(set(self.tags + job.video_tags)) self.backend.update_video(job.video_id, job.video_title, job.video_description, tags, job.public) # Update thumbnail if needed. This might fail if we don't have the right segments,