From 7be87c722ca8fe6398c02e606154f1358dfdf15b Mon Sep 17 00:00:00 2001 From: Kiritow <1362050620@qq.com> Date: Mon, 26 Jul 2021 13:49:31 +0000 Subject: [PATCH] Fix --- quick_create_client.sh | 0 tool_quick_client.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 quick_create_client.sh diff --git a/quick_create_client.sh b/quick_create_client.sh old mode 100644 new mode 100755 diff --git a/tool_quick_client.py b/tool_quick_client.py index 3bd1885..6717ea5 100644 --- a/tool_quick_client.py +++ b/tool_quick_client.py @@ -13,7 +13,7 @@ if config: print("No valid config found, creating a default one...") -ifname = input("Input new wireguard interface name (wg0):").strip() or "wg0" +ifname = input("Input new wireguard interface name (wg0): ").strip() or "wg0" listen_port = input("Input new wireguard listen port (51820): ").strip() or "51820" while True: ifip = input("Input wireguard interface ip (Example: 10.0.0.1)\n> ").strip()