I found a small bug in TorCtl.py, in connection.map_address()

In method connection.map_address() in TorCtl.py, the following line is supposed to build the line to be sent to the tor control port in order to map a list of adresses:

m = " ".join([ "%s=%s" for k,v in kvList])

The string "%s=%s" lacks formatting. Better:

m = " ".join([ "%s=%s" (k,v) for (k,v) in kvList])

My first contrib to open source (: I hope this is the right place for this

Trac:
Username: derpington