
commit 487c1b6c16e979bc448ddd415364e28bd764d29a Author: Isis Lovecruft <isis@torproject.org> Date: Fri Sep 5 00:54:33 2014 +0000 Change bridge line PT args to be space-separated. * FIXES #12932 https://bugs.torproject.org/12932 --- 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 fa9c246..613e2db 100644 --- a/lib/bridgedb/Bridges.py +++ b/lib/bridgedb/Bridges.py @@ -548,7 +548,7 @@ class PluggableTransport(object): if includeFingerprint: sections.append(self.bridge.fingerprint) - args = ",".join(["%s=%s" % (k, v) for k, v in self.argdict.items()]) + args = " ".join(["%s=%s" % (k, v) for k, v in self.argdict.items()]) sections.append(args) line = ' '.join(sections)