From 8690f647e3fde46b1397e5eb4b3197a891a019e4 Mon Sep 17 00:00:00 2001 From: AntiTree Date: Sun, 3 Jul 2016 11:09:07 -0400 Subject: [PATCH] updating password for control port auth --- util/get_consensus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/get_consensus.py b/util/get_consensus.py index 9b5b962..3bb2272 100644 --- a/util/get_consensus.py +++ b/util/get_consensus.py @@ -1,7 +1,7 @@ from stem.control import Controller with Controller.from_port(port = 9051) as controller: - controller.authenticate("balls") + controller.authenticate("password") for desc in controller.get_network_statuses(): print("found relay %s (%s)" % (desc.nickname, desc.fingerprint))