Comment 9 for bug 422675

Revision history for this message
Dan O'Reilly (oreilldf) wrote :

File "/usr/share/wicd/wicd-daemon.py", line 1147, in ConnectWireless
    print 'Connecting to wireless network ' + self.LastScan[id]['essid']
TypeError: cannot concatenate 'str' and 'int' objects

As a workaround, you can open up /usr/share/wicd/wicd-daemon.py, go to the line it references in the backtrace (1147), and change
    self.LastScan[id]['essid']
to
    str(self.LastScan[id]['essid'])