commit 183b27df7ed1cf70bce847fe8db4cb85249f8eef Author: Damian Johnson atagar@torproject.org Date: Mon Jul 9 10:22:42 2018 -0700
Update dirauth/fallback locations in tor
Recently tor rearranged stuff. Referencing the new locations...
https://lists.torproject.org/pipermail/tor-dev/2018-July/013287.html --- stem/directory.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/stem/directory.py b/stem/directory.py index 600c9721..afbc39c3 100644 --- a/stem/directory.py +++ b/stem/directory.py @@ -57,8 +57,8 @@ try: except ImportError: import urllib2 as urllib
-GITWEB_AUTHORITY_URL = 'https://gitweb.torproject.org/tor.git/plain/src/or/auth_dirs.inc' -GITWEB_FALLBACK_URL = 'https://gitweb.torproject.org/tor.git/plain/src/or/fallback_dirs.inc' +GITWEB_AUTHORITY_URL = 'https://gitweb.torproject.org/tor.git/plain/src/app/config/auth_dirs.inc' +GITWEB_FALLBACK_URL = 'https://gitweb.torproject.org/tor.git/plain/src/app/config/fallback_dirs.inc' FALLBACK_CACHE_PATH = os.path.join(os.path.dirname(__file__), 'cached_fallbacks.cfg')
AUTHORITY_NAME = re.compile('"(\S+) orport=(\d+) .*"')