Skip to content

Commit

Permalink
Fix unicode error in gdown.download_folder
Browse files Browse the repository at this point in the history
  • Loading branch information
wkentaro committed Jun 26, 2022
1 parent 14b00bd commit 68eff31
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gdown/download_folder.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# -*- encoding: utf-8 -*-

from __future__ import print_function

from itertools import islice
Expand Down Expand Up @@ -351,7 +353,7 @@ def download_folder(

filename = download(
files_url + file_id,
output=str(file_path),
output=file_path,
quiet=quiet,
proxy=proxy,
speed=speed,
Expand Down

0 comments on commit 68eff31

Please sign in to comment.