Comment 8 for bug 1421918

Revision history for this message
Armin (syntaxdog) wrote :

Hi,

I was able to fix this on my machine by simply including a try/except handler in the get_selected_profile() function of the WiredComboBox() class, like so:
<code>
    def get_selected_profile(self):
        """Get the selected wired profile"""
        try:
            loc = self.get_focus()[1]
            return self.theList[loc]
        except:
            return ""
</code>

- Armin