From 4c8943e6b9e4c09ad7884c2dfe85863b4164d32d Mon Sep 17 00:00:00 2001 From: dave Date: Mon, 9 Jan 2023 22:28:25 -0800 Subject: [PATCH] disable unimplemented flag --- resticbackup/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resticbackup/cli.py b/resticbackup/cli.py index c825c95..5b017b5 100644 --- a/resticbackup/cli.py +++ b/resticbackup/cli.py @@ -138,8 +138,8 @@ def main(): p_restore.set_defaults(func=cmd_restore) p_restore.add_argument("name", help="name of backup to restore") # p_restore.add_argument("snapshot", nargs="?", help="id of snapshot to restore") # TODO - p_restore.add_argument('--no-snapshots-ok', action='store_true', - help='don\'t return an error if no snapshots are available to be restored') + # p_restore.add_argument('--no-snapshots-ok', action='store_true', + # help='don\'t return an error if no snapshots are available to be restored') p_exec = sp_action.add_parser("exec", help="execute a restic command") p_exec.set_defaults(func=cmd_exec)