From 32053c3b880d74333a26faceaf2d68e4fc2c63c5 Mon Sep 17 00:00:00 2001 From: pfeairheller Date: Sat, 7 Oct 2023 13:10:19 -0700 Subject: [PATCH] Fix loading args from file for incept. Signed-off-by: pfeairheller --- src/keri/app/cli/commands/incept.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/keri/app/cli/commands/incept.py b/src/keri/app/cli/commands/incept.py index 6fdce392e..f752fed1b 100644 --- a/src/keri/app/cli/commands/incept.py +++ b/src/keri/app/cli/commands/incept.py @@ -98,8 +98,7 @@ def mergeArgsWithFile(args): incept_opts = config.loadFileOptions(args.file, InceptOptions) if args.file != '' else emptyOptions() - if args.transferable is not None: - incept_opts.transferable = args.transferable + incept_opts.transferable = True if args.transferable else incept_opts.transferable if len(args.wits) > 0: incept_opts.wits = args.wits if args.icount is not None: