Skip to content

Commit

Permalink
Use stderr for print statement in download_folder.py
Browse files Browse the repository at this point in the history
  • Loading branch information
wkentaro committed Feb 2, 2024
1 parent 4c5cd58 commit b21274b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gdown/download_folder.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def download_folder(
os.makedirs(root_folder)

if not quiet:
print("Building directory structure completed")
print("Building directory structure completed", file=sys.stderr)
filenames = []
for file_id, file_path in directory_structure:
if file_id is None: # folder
Expand Down

0 comments on commit b21274b

Please sign in to comment.