<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body><div># HG changeset patch<br></div>
<div># User Eric Allen &lt;<a href="mailto:eric@hackerengineer.net">eric@hackerengineer.net</a>&gt;<br></div>
<div># Date 14227542<u></u>68 28800<br></div>
<div># &nbsp; &nbsp; &nbsp;Sat Jan 31 17:31:08 2015 -0800<br></div>
<div># Node ID 0ee06737ce8c741e19376dad5d4391307a54aafe<br></div>
<div># Parent &nbsp;05767e5dabb45d0a99ca63df5705bc799e1858a3<br></div>
<div>Fix skip reading in TH-UVF8D<br></div>
<div>&nbsp;</div>
<div>Turns out the and/or Python ternary doesn't work when you do "and ''",<br></div>
<div>because '' is falsey.<br></div>
<div>&nbsp;</div>
<div>diff -r 05767e5dabb4 -r 0ee06737ce8c chirp/th_uvf8d.py<br></div>
<div>--- a/chirp/th_uvf8d.pyThu Jan 29 07:24:01 2015 -0600<br></div>
<div>+++ b/chirp/th_uvf8d.pySat Jan 31 17:31:08 2015 -0800<br></div>
<div>@@ -386,7 +386,10 @@<br></div>
<div>&nbsp;</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;mem.name = str(_mem.name).rstrip('\xFF ')<br></div>
<div>&nbsp;</div>
<div>- &nbsp; &nbsp; &nbsp; &nbsp;mem.skip = dont_skip and "" or "S"<br></div>
<div>+ &nbsp; &nbsp; &nbsp; &nbsp;if dont_skip:<br></div>
<div>+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;mem.skip = ''<br></div>
<div>+ &nbsp; &nbsp; &nbsp; &nbsp;else:<br></div>
<div>+ &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;mem.skip = 'S'<br></div>
<div>&nbsp;</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;mem.mode = _mem.wideband and "FM" or "NFM"<br></div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;mem.power = POWER_LEVELS[1 - _mem.ishighpower]<br></div>
<div>&nbsp;</div>
</body>
</html>