Commands: clarify description of getservers

The previous description made it sound like it returned the list of
currently connected servers; this clarifies that it's only a list of
candidate servers to connect to (no guarantee that they are all currently
connected).
This commit is contained in:
JeremyRand 2020-03-30 22:50:25 +00:00
parent 79d57784c1
commit 72de433f5c
No known key found for this signature in database
GPG key ID: B3F2D165786D6570

View file

@ -467,7 +467,7 @@ class Commands:
@command('n')
async def getservers(self):
"""Return the list of available servers"""
"""Return the list of known servers (candidates for connecting)."""
return self.network.get_servers()
@command('')