[tor-commits] [bridgedb/master] Tor expects the PT argument separator to be a comma
isis at torproject.org
isis at torproject.org
Sun Jan 12 06:06:34 UTC 2014
commit 5db4f966b2afcdaf61cd902e26a94d2570fa4da7
Author: Matthew Finkel <Matthew.Finkel at gmail.com>
Date: Sat Oct 5 16:28:27 2013 +0000
Tor expects the PT argument separator to be a comma
---
lib/bridgedb/Bridges.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/bridgedb/Bridges.py b/lib/bridgedb/Bridges.py
index 57f7a03..e6cf210 100644
--- a/lib/bridgedb/Bridges.py
+++ b/lib/bridgedb/Bridges.py
@@ -405,7 +405,7 @@ class PluggableTransport:
host = "%s %s:%d" % (self.methodname, address, self.port)
fp = ''
if includeFingerprint: fp = "keyid=%s" % self.bridge.fingerprint
- args = " ".join(["%s=%s"%(k,v) for k,v in self.argdict.items()]).strip()
+ args = ",".join(["%s=%s"%(k,v) for k,v in self.argdict.items()]).strip()
return "%s %s %s" % (host, fp, args)
def parseExtraInfoFile(f):
More information about the tor-commits
mailing list