Make the explanation less nonsensical.

This commit is contained in:
Itamar Turner-Trauring 2020-11-30 16:24:27 -05:00
parent 0d652a3af1
commit 9f7ae56a82

View File

@ -117,8 +117,9 @@ class IntroducerClient(service.Service, Referenceable):
announcements = []
for _, value in self._inbound_announcements.items():
ann, key_s, time_stamp = value
# On Python 2, bytes are stored as Unicode. To minimize changes, Python
# 3 for now ensures the same is true.
# On Python 2, bytes strings are encoded into YAML Unicode strings.
# On Python 3, bytes are encoded as YAML bytes. To minimize
# changes, Python 3 for now ensures the same is true.
server_params = {
"ann" : ann,
"key_s" : ensure_text(key_s),