12 May
2016
12 May
'16
8:01 p.m.
raise errors.RadioError("Radio didn't entered in the clone mode")
if radio.MODEL == "KT8900":
error = "Radio didn't entered in clone mode; there is a
generation"
error += " of this radios that are a clone of the WACCOM
Mini-8900"
error += " please try that also."
raise errors.RadioError(error)
else:
raise errors.RadioError("Radio didn't entered in the clone
mode")
This was wrong before, but I didn't catch it; let's get it right since we're changing it now anyway. The error should be:
"Radio did not enter clone mode"
...to be correct.
Thanks!
--Dan