Skip to content

Commit

Permalink
Merge pull request #12 from thrkll/escape-sequence-error-fix
Browse files Browse the repository at this point in the history
Fixing escape sequence error
  • Loading branch information
thrkll authored Sep 26, 2024
2 parents f7c5481 + 4f8f958 commit 1c84ac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ruv-dl/ruv-dl.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def ruv_attributes(url) -> dict:
title = args.output

# ... and sanitizes filename
title = re.sub('[^\w_.)( -]', '', title)
title = re.sub(r'[^\w_.)( -]', '', title)
attributes['title'] = title

# Media content link
Expand Down

0 comments on commit 1c84ac7

Please sign in to comment.