Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Bug Fixes
* Make multi-line detection and special cases more robust.
* Run empty `--execute` arguments instead of ignoring the flag.
* Exit with error when the `--batch` argument is an empty string.
* Avoid logging SSH passwords.


Internal
Expand Down
3 changes: 1 addition & 2 deletions mycli/sqlexecute.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def connect(
"\tssh_user: %r"
"\tssh_host: %r"
"\tssh_port: %r"
"\tssh_password: %r"
"\tssh_password: ***"
"\tssh_key_filename: %r"
"\tinit_command: %r"
"\tunbuffered: %r",
Expand All @@ -260,7 +260,6 @@ def connect(
ssh_user,
ssh_host,
ssh_port,
ssh_password,
ssh_key_filename,
init_command,
unbuffered,
Expand Down
Loading