Skip to content

Commit

Permalink
Fix for #39
Browse files Browse the repository at this point in the history
Fixes #39
  • Loading branch information
Xonshiz committed Jan 27, 2018
1 parent fcb44c3 commit 84ff5c2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@
- Fix for #17 and #26 [2017.12.27]
- PEP8 Cleaning [2018.01.02]
- Fix for #18 [2018.01.02]
- Fix for #31 [2018.01.21]
- Fix for #31 [2018.01.21]
- Fix for #39 [2018.01.27]
2 changes: 1 addition & 1 deletion anime_dl/sites/crunchyroll.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def singleEpisode(self, url, cookies, token, resolution):
subtitles_files.append("--track-name 0:Deutsch --ui-language de --default-track 0:no --sub-charset 0:utf-8 " + '"' + str(
os.path.realpath(sub_file)) + '" ')
elif sub_file.endswith(".arME.ass"):
subtitles_files.append("--track-name 0:Arabic --ui-language ar --default-track 0:no --sub-charset 0:utf-8 " + '"' + str(
subtitles_files.append("--track-name 0:Arabic --default-track 0:no --sub-charset 0:utf-8 " + '"' + str(
os.path.realpath(sub_file)) + '" ')
elif sub_file.endswith(".itIT.ass"):
subtitles_files.append("--track-name 0:Italiano --ui-language it --default-track 0:no --sub-charset 0:utf-8 " + '"' + str(
Expand Down
2 changes: 1 addition & 1 deletion anime_dl/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Format : YY/MM/DD
__version__ = "2018.01.02"
__version__ = "2018.01.27"
3 changes: 2 additions & 1 deletion docs/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@
- Fix for #17 and #26 [2017.12.27]
- PEP8 Cleaning [2018.01.02]
- Fix for #18 [2018.01.02]
- Fix for #31 [2018.01.21]
- Fix for #31 [2018.01.21]
- Fix for #39 [2018.01.27]

0 comments on commit 84ff5c2

Please sign in to comment.