Skip to content

Commit

Permalink
Fix issue #60: not all arguments converted
Browse files Browse the repository at this point in the history
#60

String formatting issue with wrapped cmds.
  • Loading branch information
kanaka committed Sep 21, 2012
1 parent e6d8d8f commit ff736e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion websockify/websocketproxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def new_client(self):

# Connect to the target
if self.wrap_cmd:
msg = "connecting to command: %s" % (" ".join(self.wrap_cmd), self.target_port)
msg = "connecting to command: '%s' (port %s)" % (" ".join(self.wrap_cmd), self.target_port)
elif self.unix_target:
msg = "connecting to unix socket: %s" % self.unix_target
else:
Expand Down

0 comments on commit ff736e9

Please sign in to comment.