Closed FisheyLP closed 4 years ago
please merge
I think maybe I accidentally fixed this with my Python 3 compatibility update. The main issue seemed to be the log line was passing None for a int which '%' didn't like. Your change updated it to be %s. Similarly I changed it to untyped placeholders using str.format.
I didn't make similar changes for baudrate like port. port has a "discovered" port and the auto connect set port "autoport" that have to be compared so that we don't try to auto connect to a port that appears, but doesn't match what the auto connect settings say. Baudrate doesn't have the same need since we're just passing the baudrate to the connection request and don't compare it ahead of time.
In any case, it appears to work. Thanks for the pull request. Sorry I've been away for so long.
Fixes #11