I'm a bit baffled why 2to3
is bothering embracing my print arguments that are already in functional style to be wrapped in an extra set of parenthesis. For example
print("\t[Warn] Can not connect {}".format(ssid))
becomes
print(("\t[Warn] Can not connect {}".format(ssid)))
Are these essentially conservative false positives? I'm thinking maybe the trailing )
in the format function is throwing its logic.