We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbf98eb commit 307154eCopy full SHA for 307154e
1 file changed
beef.py
@@ -440,7 +440,8 @@ def parse_args(
440
run_config = RunConfig.read(
441
RunConfig.from_argparse(args).state_file
442
)
443
- run_config.attach = args.attach
+ with contextlib.suppress(AttributeError):
444
+ run_config.attach = args.attach
445
elif action is ls:
446
args.vm = ''
447
run_config = RunConfig.from_argparse(args)
0 commit comments