diff --git a/changelog.md b/changelog.md index e0393bce..fb32e5af 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,28 @@ +Upcoming Release (TBD) +====================== + +Bug Fixes: +---------- + + +Internal: +--------- + +Features: +--------- + + +1.27.2 (2024/04/03) +=================== + +Bug Fixes: +---------- + +* Don't use default prompt when one is not supplied to the --prompt option. + + 1.27.1 (2024/03/28) -======== +=================== Bug Fixes: diff --git a/mycli/main.py b/mycli/main.py index 7033294e..ce4dff7e 100755 --- a/mycli/main.py +++ b/mycli/main.py @@ -1155,7 +1155,7 @@ def get_last_query(self): help='list of DSN configured into the [alias_dsn] section of myclirc file.') @click.option('--list-ssh-config', 'list_ssh_config', is_flag=True, help='list ssh configurations in the ssh config (requires paramiko).') -@click.option('-R', '--prompt', 'prompt', default=MyCli.default_prompt, +@click.option('-R', '--prompt', 'prompt', help='Prompt format (Default: "{0}").'.format( MyCli.default_prompt)) @click.option('-l', '--logfile', type=click.File(mode='a', encoding='utf-8'),