Comment 2 for bug 1638965

Revision history for this message
Francis Chin (chinf) wrote :

It's a simple bug in line 88 (in def update_interface) which reads:
                if self.default_dev in name:

This should instead use the equality operator:
                if self.default_dev == name: