From d62b45f899bb5c69875c03e2d9079716558792ef Mon Sep 17 00:00:00 2001 From: derrod Date: Fri, 22 May 2020 09:54:12 +0200 Subject: [PATCH] [cli] Add message notifying users about the resumability of the downloads --- legendary/cli.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/legendary/cli.py b/legendary/cli.py index c102b96..2cc2eab 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -507,6 +507,9 @@ class LegendaryCLI: for warn in sorted(res.warnings): logger.warning(warn) + logger.info('Downloads are resumable, you can interrupt the download with ' + 'CTRL-C and resume it using the same command later on.') + if not args.yes: choice = input(f'Do you wish to install "{igame.title}"? [Y/n]: ') if choice and choice.lower()[0] != 'y':