You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: edce/config.py
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -36,8 +36,9 @@ def getString(section, key):
36
36
returnres
37
37
38
38
defperformSetup():
39
-
username=input("Frontier Store Username (leave empty to be prompted at runtime): ").strip()
40
-
password=getpass.getpass('Frontier Store Password (leave empty to be prompted at runtime): ').strip()
39
+
print("Enter your Frontier Store credentials here. You can leave your username or password empty, however you will be prompted every time you run the edce_client.py script.")
40
+
username=input("Frontier Store Username: ").strip()
41
+
password=getpass.getpass('Frontier Store Password: ').strip()
41
42
enableEDDN=input("Send market data to EDDN. No private information is sent. [Y/n]: ").strip().lower()
0 commit comments