Comment 2 for bug 1734101

Revision history for this message
Simon Leinen (simon-leinen) wrote :

A quick fix would be to change

  host, port = addr

to

  host, port = addr[0], addr[1]

(I didn't find a more "pythonic" way to ignore extra elements of addr, but then I'm a Python n00b.)