disable unimplemented flag

This commit is contained in:
dave 2023-01-09 22:28:25 -08:00
parent bf764305d3
commit 4c8943e6b9
1 changed files with 2 additions and 2 deletions

View File

@ -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)