Skip to content

Commit

Permalink
clean up detected issues in diagnostics
Browse files Browse the repository at this point in the history
  • Loading branch information
n1kdo committed Dec 20, 2023
1 parent 10c6118 commit 89a9c1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion diagnasties/kat500-remote-client.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def main():
# create login message
cmd = f'server::login::{kat500_remote_username}::{kat500_remote_password}\n'
# send login message
print(f'TX: {cmd}')
print(f'TX: server::login::(redacted)')
skt.send(cmd.encode())

# wait for response
Expand Down
2 changes: 1 addition & 1 deletion diagnasties/kpa500-remote-client.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def main():
# create login message
cmd = f'server::login::{kpa500_remote_username}::{kpa500_remote_password}\n'
# send login message
print(f'TX: {cmd}')
print('TX: server::login::(redacted)')
skt.send(cmd.encode())

# wait for response
Expand Down

0 comments on commit 89a9c1b

Please sign in to comment.