[flashproxy/master] Fix what the global RELAYS looks like.

commit df76e0527c45414d84ccb475d96731e90ba14f11 Author: David Fifield <david@bamsoftware.com> Date: Fri Sep 20 22:57:01 2013 -0700 Fix what the global RELAYS looks like. --- facilitator/facilitator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/facilitator/facilitator b/facilitator/facilitator index 986b166..481ccdd 100755 --- a/facilitator/facilitator +++ b/facilitator/facilitator @@ -29,7 +29,7 @@ LOG_DATE_FORMAT = "%Y-%m-%d %H:%M:%S" # Dictionary containing Tor relay addresses that we can pass to # proxies. It looks like this: -# {"websocket" : ["1.1.1.1:123"], "obfs3|websocket" : ["3.1.2.3:5555", "1.2.3.4:6666"], "obfs2|websocket" : ["1.2.4.4:5123"]} +# {("websocket"): [("1.1.1.1", 123)], ("obfs3", "websocket"): [("3.1.2.3", 5555), ("1.2.3.4", 6666)], ("obfs2", "websocket"): [("1.2.4.4", 5123)]} RELAYS = {} class UnknownTransport(Exception): pass
participants (1)
-
infinity0@torproject.org