<p>Hi<br></p><p>I&#39;ve written a piece of code that seems to work fine in PyQt 4.0.1 which is in Debian Etch. Basically it just takes a list of string and saves it using QSettings object. The code is similar to:</p><p>settings = QSettings()</p>
<p>strings = [u&#39;string0&#39;, u&#39;string1&#39;, u&#39;string2&#39;, u&#39;string3&#39;, u&#39;string4&#39;, u&#39;string5&#39;, u&#39;string6&#39;, u&#39;string7&#39;, u&#39;string8&#39;, u&#39;string9&#39;]</p><p>settings.saveValue(&quot;Header&quot;, QVariant(strings))</p>
<p>This works fine, but on PyQt 4.4.3 it gives an error: </p><p>&nbsp; &nbsp; QVariant::save: unable to save type 429.</p><p>I&#39;ve tried using QStringList instead, but no luck.</p><p>What is causing this and is there anything I can do about it?&nbsp;</p>