Skip to content

Commit

Permalink
fixed stdout write string
Browse files Browse the repository at this point in the history
fixed stdout write string
  • Loading branch information
haisamido authored Oct 3, 2024
1 parent d8629a5 commit 2e1adc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def print_status(self):
simulator = Simulator(RATE)
simulator.start()
sys.stdout.write('Using playback rate of ' + str(RATE) + 'Hz, ');
sys.stdout.write('TC host=' + str(TM_SEND_ADDRESS) + ', TM port=' + str(TM_SEND_PORT) + ', ');
sys.stdout.write('TM host=' + str(TM_SEND_ADDRESS) + ', TM port=' + str(TM_SEND_PORT) + ', ');
sys.stdout.write('TC host=' + str(TC_RECEIVE_ADDRESS) + ', TC port=' + str(TC_RECEIVE_PORT) + '\r\n');
try:
prev_status = None
Expand Down

0 comments on commit 2e1adc0

Please sign in to comment.