<div dir="ltr"><pre class="gmail-m_-5380909526762417932gmail-tw-data-text gmail-m_-5380909526762417932gmail-tw-ta gmail-m_-5380909526762417932gmail-tw-text-small" id="gmail-m_-5380909526762417932gmail-tw-target-text" style="text-align:left;height:768px" dir="ltr"><span lang="en">Hi all. I found a bug in the last release 2.3.

In the file pyqtdeploy / sysroot / plugins / python / python.py: 407, the variable cls is referenced, but it does not exist:

@staticmethod
    def _major_minor_as_string (sysroot):
        "" "Return the Python major.minor as a string." ""

        major, minor = cls._major_minor (sysroot)

        return str (major) + '.' + str (minor)

I have solved it like this:


    @staticmethod
    def _major_minor_as_string (sysroot):
        "" "Return the Python major.minor as a string." ""

        major, minor, _ = sysroot.decode_version_nr (
                sysroot.target_py_version_nr)

I hope to be helpful. regards</span></pre><br clear="all"><br>-- <br><div dir="ltr" class="gmail_signature" data-smartmail="gmail_signature">Cuenta de correo propiedad de FERNÁNDEZ FERNÁNDEZ, JOSÉ ANTONIO y de uso estrictamente profesional. Este mensaje electrónico está dirigido únicamente a la(s) direcciones indicadas anteriormente: el carácter confidencial, personal e intransferible del mismo está protegido legalmente.<br>Cualquier revelación, uso o reenvío no autorizado, completo o en parte está prohibido. Si ha recibido este mensaje por equivocación notifíquelo inmediatamente a la persona que lo remite y borre el mensaje original junto con sus ficheros anexos sin leerlo ni grabarlo total o parcialmente. Si usted no desea recibir correos de nuestra empresa, por favor, envíenos un correo a <a href="mailto:AULLASISTEMAS@GMAIL.COM" target="_blank">AULLASISTEMAS@GMAIL.COM</a> manifestando tal deseo<br></div></div>