Skip to content

Commit

Permalink
Merge pull request #95 from strager/fix-titles
Browse files Browse the repository at this point in the history
Fix video titles in JSON format
  • Loading branch information
PetterKraabol authored Jan 9, 2021
2 parents 3b5b18c + 91a6e15 commit 07861ff
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tcd/pipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def output(self, video_data: Dict[str, Any]) -> str:
"""

# Video title
video_data = dict(video_data)
video_data['title'] = Pipe.get_valid_filename(video_data['title'])

# Output directory and file
Expand Down

0 comments on commit 07861ff

Please sign in to comment.