diff --git a/tor/controller.go b/tor/controller.go index f997a8697..6facef892 100644 --- a/tor/controller.go +++ b/tor/controller.go @@ -250,7 +250,7 @@ func (c *Controller) Reconnect() error { // sendCommand sends a command to the Tor server and returns its response, as a // single space-delimited string, and code. func (c *Controller) sendCommand(command string) (int, string, error) { - id, err := c.conn.Cmd(command) + id, err := c.conn.Cmd("%v", command) if err != nil { return 0, "", err }