From a6f30e0b94e1939f1f931d0637fba20f5cb28450 Mon Sep 17 00:00:00 2001 From: Christopher Usher Date: Sun, 25 Aug 2019 01:21:55 -0700 Subject: [PATCH] typos in comments --- backfiller/backfiller/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backfiller/backfiller/main.py b/backfiller/backfiller/main.py index 981053d..25cc2ea 100644 --- a/backfiller/backfiller/main.py +++ b/backfiller/backfiller/main.py @@ -235,7 +235,7 @@ class BackfillerManager(object): This returns a list of the other wubloaders as URL strings. Node URLs are taken from three places. First, the --static-nodes command line argument can be used to provide a list of URLs that are always - backfilled from. Node names infered from the hostnames of the URLs. + backfilled from. Node names are infered from the hostnames of the URLs. Second, nodes are read from the file named in the --node-file command line argument. In this file, nodes are listed one per line as name-URL pairs or as just node URLs. Lines starting with '#' are ignored. If @@ -244,7 +244,7 @@ class BackfillerManager(object): --node-database. If multiple nodes URLs with the same name are found, only the last is retained and any nodes matching the local hostname (given by the --hostname argument) are ignored to try to prevent this - node from backfilling from its self.""" + node from backfilling from itself.""" nodes = {urlparse.urlparse(node).hostname:node for node in self.static_nodes}