Skip to content

Commit f4cb97b

Browse files
committedMar 25, 2015
comm_serial: fix baud rate change logging
1 parent 2d1bbdf commit f4cb97b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎artiq/coredevice/comm_serial.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def build(self):
7575
def set_baud(self, baud):
7676
self.port.baudrate = baud
7777
self.port.flush()
78-
logger.debug("baud rate set to".format(baud))
78+
logger.debug("baud rate set to {}".format(baud))
7979

8080
def set_remote_baud(self, baud):
8181
_write_exactly(self.port, struct.pack(

0 commit comments

Comments
 (0)
Please sign in to comment.