Change alias definitions to be global, so aliases can be reused across different networks

This commit is contained in:
2019-09-29 22:45:16 +01:00
parent 355a80b19b
commit 32309ecec2
15 changed files with 68 additions and 33 deletions

View File

@@ -9,4 +9,4 @@ def getRelay(num):
port = int(port)
except ValueError:
return False
return [host, port]
return (host, port)