Skip to content

Commit

Permalink
Fix code indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
aag committed Jan 20, 2020
1 parent 0c2a508 commit 329a377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion download_trailers.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def clean_movie_title(title):
and converting to unicode, this function also removes characters that
should not be used in filenames on various operating systems."""
clean_title = u''.join(s for s in title
if s not in r'\/:*?<>|#%&{}$!\'"@+`=')
if s not in r'\/:*?<>|#%&{}$!\'"@+`=')
# Remove repeating spaces
clean_title = re.sub(r'\s\s+', ' ', clean_title).strip()

Expand Down

0 comments on commit 329a377

Please sign in to comment.