Comment 19 for bug 422675

Revision history for this message
Oliver Sherouse (oliver-sherouse) wrote :

The fix here isn't the correct one. The correct line to change is 1206 (in my version) of wicd-daemon.py

It needs to be changed from:
             cur_network['essid'] = stored_essid
to:
            cur_network['essid'] = str(stored_essid)

This solves the TypeError throughout, and should fix the problem altogether.