We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b103dcb commit 92be336Copy full SHA for 92be336
tmuxp/cli.py
@@ -400,10 +400,10 @@ def command_load(args):
400
401
if isinstance(args.config, list):
402
# Load each configuration but the last to the background
403
- for config in args.config[:-1]:
+ for cfg in args.config[:-1]:
404
new_args = argparse.Namespace(**args.__dict__)
405
new_args.detached = True
406
- new_args.config = config
+ new_args.config = cfg
407
command_load(new_args)
408
409
# The last one will be detached if specified on the command line
0 commit comments