Fixed typo

This commit is contained in:
Dionysus 2024-02-08 14:37:36 -05:00
parent e5691b7e97
commit c66dc92033
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
1 changed files with 4 additions and 4 deletions

View File

@ -68,7 +68,7 @@ if __name__ == '__main__':
with open('tor.exit.json', 'w') as fd:
json.dump(tor_data['exit'], fd)
print('Relays: {0:,}'.foramt(len(tor_data['relay'])))
print('Relays: {0:,}'.format(len(tor_data['relay'])))
print('Exits : {0:,}'.format(len(tor_data['exit'])))
try: