We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48bff61 commit 0ab8b60Copy full SHA for 0ab8b60
tmuxp/cli.py
@@ -911,7 +911,7 @@ def command_convert(confirmed, config):
911
configparser.import_config(config)
912
newfile = config.replace(ext, '.yaml')
913
newconfig = configparser.export('yaml', indent=2, default_flow_style=False)
914
- if click.confirm('convert config to %s?' % newfile):
+ if click.confirm('Save config to %s?' % newfile):
915
buf = open(newfile, 'w')
916
buf.write(newconfig)
917
buf.close()
0 commit comments