Skip to content

Commit

Permalink
fix typo scanner.py (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
beeyev authored Jun 6, 2024
1 parent 5e0a600 commit b072ff2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tor_relay_scanner/scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def main():
parser = argparse.ArgumentParser(description=DESCRIPTION)
parser.add_argument('-n', type=int, dest='num_relays', default=30, help='The number of concurrent relays tested.')
parser.add_argument('-g', '--goal', type=int, dest='working_relay_num_goal', default=5, help='Test until at least this number of working relays are found')
parser.add_argument('-c', '--preferred-country', type=str, default="", help='Preferred country list, comma-separeted. Example: se,gb,nl,de')
parser.add_argument('-c', '--preferred-country', type=str, default="", help='Preferred country list, comma-separated. Example: se,gb,nl,de')
parser.add_argument('--timeout', type=float, default=10.0, help='Socket connection timeout')
parser.add_argument('-o', '--outfile', type=argparse.FileType('w'), default=sys.stdout, help='Output reachable relays to file')
parser.add_argument('--torrc', action='store_true', dest='torrc_fmt', help='Output reachable relays in torrc format (with "Bridge" prefix)')
Expand Down

0 comments on commit b072ff2

Please sign in to comment.