summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamian Johnson <atagar@torproject.org>2018-04-20 09:49:05 -0700
committerDamian Johnson <atagar@torproject.org>2018-04-20 09:49:05 -0700
commit27b2cbd7204720520667e9683dc45f2605e5de40 (patch)
treeb21ce47c7945c954a01d9bca09dd5d52eef9f938
parent331406cb5ffe8e4e216e6d1396664f34d6c3cb28 (diff)
Clarify what get_server_descriptors provides
The 'all descriptors in the present consensus' description in our docs was incorrect. This provides all descriptors known by the relay we're downloading from, but that doesn't necessarily match what's in the consensus... https://gitweb.torproject.org/torspec.git/tree/dir-spec.txt#n3840 Pointed out by cypherpunks on... https://trac.torproject.org/projects/tor/ticket/25866
-rw-r--r--stem/descriptor/remote.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/stem/descriptor/remote.py b/stem/descriptor/remote.py
index 8e5b759d..89019c2d 100644
--- a/stem/descriptor/remote.py
+++ b/stem/descriptor/remote.py
@@ -644,8 +644,8 @@ class DescriptorDownloader(object):
def get_server_descriptors(self, fingerprints = None, **query_args):
"""
Provides the server descriptors with the given fingerprints. If no
- fingerprints are provided then this returns all descriptors in the present
- consensus.
+ fingerprints are provided then this returns all descriptors known
+ by the relay.
:param str,list fingerprints: fingerprint or list of fingerprints to be
retrieved, gets all descriptors if **None**