Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Use correct default port in scripts/check_signature.py
Browse files Browse the repository at this point in the history
  • Loading branch information
erikjohnston committed Nov 26, 2014
1 parent cb76945 commit 4e34e8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/check_signature.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def get_targets(server_name):
for srv in answers:
yield (srv.target, srv.port)
except dns.resolver.NXDOMAIN:
yield (server_name, 8480)
yield (server_name, 8448)

def get_server_keys(server_name, target, port):
url = "https://%s:%i/_matrix/key/v1" % (target, port)
Expand Down

0 comments on commit 4e34e8f

Please sign in to comment.