manojmj92 / subtitle-downloader

Python script to automatically download subtitles for any movie/tv series episode.
GNU General Public License v3.0
780 stars 238 forks source link

Allow square brackets in input path #62

Closed johanmcquillan closed 6 years ago

johanmcquillan commented 6 years ago

A lot of video files (that I come across) have square brackets in the file name, and deleting these is tedious.

The only problem with square brackets is that glob views them as a character class, such as '[a-z]'. By replacing each square bracket with a character class consisting only of a single bracket ie. '[[]' or '[]]'; glob stops complaining.