Skip to content

Commit

Permalink
quickfix: install history suppression
Browse files Browse the repository at this point in the history
  • Loading branch information
gzz2000 committed Dec 16, 2023
1 parent 0778dc7 commit 8bc1804
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rossh_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def init_connection(self, master_fd):
# this seems to be more robust.
def run_cmd(cmd):
assert b'\n' not in cmd
write_to(master_fd, cmd + b'\n')
write_to(master_fd, b' ' + cmd + b'\n')
while True:
data = os.read(master_fd, 4096)
if is_debug: write_to(stdout_fileno, b'{' + data + b'}')
Expand Down

0 comments on commit 8bc1804

Please sign in to comment.