From adcbcdb5bdaef687b5d44d8a273a38b90b2ec524 Mon Sep 17 00:00:00 2001 From: Antonio Lopez Rivera Date: Fri, 6 Aug 2021 03:36:41 +0200 Subject: [PATCH] CLI improvements --- anchorage/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/anchorage/cli.py b/anchorage/cli.py index 240c9f6..73526ac 100644 --- a/anchorage/cli.py +++ b/anchorage/cli.py @@ -259,7 +259,7 @@ def main(): 'type': 'list', 'name': 'archive', 'message': f'Choose an archiving method.', - 'choices': ['Online', 'Local (ArchiveBox)'], + 'choices': ['Online', 'Local'], 'filter': lambda n: n.split(' ')[0].lower() }] @@ -299,7 +299,7 @@ def main(): 'type': 'list', 'name': 'loglevel', 'message': 'Enter the relative or full path of the archive directory.', - 'choices': ['Full log output', 'Progress bar', 'Suppress all output'], + 'choices': [' - Full log output', ' - Progress bar', ' - Suppress all output'], 'filter': lambda choice: {'Full log output' : 0, 'Progress bar' : 20, 'Suppress all output': 50}[choice]