We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83b3b62 commit 608e938Copy full SHA for 608e938
send.py
@@ -34,11 +34,12 @@ def getOptions():
34
interval = input("Interval(sec): ")
35
isDisplayMotd = input("Display Motd(y/n): ")
36
proxyUsed = input("Proxy(y/n): ")
37
+ proxyCountry = ""
38
if proxyUsed == "y":
39
try:
40
proxyCountry = sys.argv[8]
41
except:
- proxyCountry = input("ProxyCountry(like cn, ru, us): ")
42
+ proxyCountry = input("ProxyCountry(like cn, ru, us or enter to use all): ")
43
print(f"[{getTime()}] Proxy mode is under development and deprecated!")
44
proxyUsed = True
45
else:
0 commit comments