Skip to content

Commit

Permalink
Update CHANGELOG and use save_to for download
Browse files Browse the repository at this point in the history
  • Loading branch information
athakur-reef committed Oct 17, 2023
1 parent 8842d16 commit 4d2c1e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

* Fix failing to use `/dev/stdout` as b2 cli output
* Fix to support '-' as stdout alias

### Infrastructure
* Fix gathering licenses of typeshed libraries
Expand Down
4 changes: 2 additions & 2 deletions b2/console_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -1415,7 +1415,7 @@ def run(self, args):
args.fileId, progress_listener, encryption=encryption_setting
)
self._print_download_info(downloaded_file)
downloaded_file.safe_save_to(args.localFileName)
downloaded_file.save_to(args.localFileName)
self._print('Download finished')
return 0

Expand Down Expand Up @@ -1456,7 +1456,7 @@ def run(self, args):
args.b2FileName, progress_listener, encryption=encryption_setting
)
self._print_download_info(downloaded_file)
downloaded_file.safe_save_to(args.localFileName)
downloaded_file.save_to(args.localFileName)
self._print('Download finished')
return 0

Expand Down

0 comments on commit 4d2c1e2

Please sign in to comment.