Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion legendary/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ def install_game(self, args):
logger.info(f'Download size: {analysis.dl_size / 1024 / 1024:.02f} MiB '
f'(Compression savings: {compression:.01f}%)')
logger.info(f'Reusable size: {analysis.reuse_size / 1024 / 1024:.02f} MiB (chunks) / '
f'{analysis.unchanged / 1024 / 1024:.02f} MiB (unchanged / skipped)')
f'{analysis.unchanged_size / 1024 / 1024:.02f} MiB (unchanged / skipped)')
logger.info('Downloads are resumable, you can interrupt the download with '
'CTRL-C and resume it using the same command later on.')

Expand Down
2 changes: 1 addition & 1 deletion legendary/downloader/mp/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def run_analysis(self, manifest: Manifest, old_manifest: Manifest = None,

# chunks of unchanged files are not downloaded so we can skip them
if fm.filename in mc.unchanged:
analysis_res.unchanged += fm.file_size
analysis_res.unchanged_size += fm.file_size
continue

for cp in fm.chunk_parts:
Expand Down