diff options
Diffstat (limited to 'wrappers/python/main.py')
| -rw-r--r-- | wrappers/python/main.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/wrappers/python/main.py b/wrappers/python/main.py index 0bd2502..657f0ab 100644 --- a/wrappers/python/main.py +++ b/wrappers/python/main.py @@ -1,9 +1,7 @@ import eduvpn_common.main as eduvpn from eduvpn_common.state import State, StateType import webbrowser -import json import sys -import time from typing import List # Asks the user for a profile index @@ -78,9 +76,9 @@ if __name__ == "__main__": except Exception as e: print("Failed registering:", e) - #server = input( - # "Which server (Custom/Institute Access) do you want to connect to? (e.g. https://eduvpn.example.com): " - #) + server = input( + "Which server (Custom/Institute Access) do you want to connect to? (e.g. https://eduvpn.example.com): " + ) # Get a Wireguard/OpenVPN config try: |
