Skip to content

Commit

Permalink
comm_serial: fix baud rate change logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jordens committed Mar 25, 2015
1 parent 2d1bbdf commit f4cb97b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artiq/coredevice/comm_serial.py
Expand Up @@ -75,7 +75,7 @@ def build(self):
def set_baud(self, baud):
self.port.baudrate = baud
self.port.flush()
logger.debug("baud rate set to".format(baud))
logger.debug("baud rate set to {}".format(baud))

def set_remote_baud(self, baud):
_write_exactly(self.port, struct.pack(
Expand Down

0 comments on commit f4cb97b

Please sign in to comment.