Skip to content

Commit

Permalink
Update Downloader.py
Browse files Browse the repository at this point in the history
  • Loading branch information
iiEpic authored Jan 26, 2020
1 parent eafdbe3 commit 11a3632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self, download_url, output, header, show_info):
self.output = output

self.file_name = "{0}-{1}-{2}".format(self.show_name, self.season, self.episode)
self.file_path = self.output + "\\{0}.mp4".format(self.file_name)
self.file_path = self.output + os.sep + "{0}.mp4".format(self.file_name)

print('[wco-dl] - Downloading {0}'.format(self.file_name))
while True:
Expand Down

0 comments on commit 11a3632

Please sign in to comment.