From 91ae687b93abf5baf3a5bc47db33f10a940f52ad Mon Sep 17 00:00:00 2001 From: jiangxufeng Date: Tue, 10 Sep 2019 00:32:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=AD=98=E5=9C=A8=E9=83=A8?= =?UTF-8?q?=E5=88=86=E6=83=85=E5=86=B5=E4=B8=8B=E4=B8=AD=E6=96=87=E5=90=8D?= =?UTF-8?q?=E7=A7=B0url=E7=BC=96=E7=A0=81=E7=9A=84=E6=83=85=E5=86=B5?= =?UTF-8?q?=EF=BC=8C=E6=96=B0=E5=A2=9E=E5=90=8C=E6=97=B6=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=A4=9A=E4=B8=AA=E9=85=8D=E7=BD=AE=EF=BC=8C=E6=81=A2=E5=A4=8D?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E5=BB=B6=E6=97=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- v2rayL-GUI/v2rayLui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2rayL-GUI/v2rayLui.py b/v2rayL-GUI/v2rayLui.py index 292ec8e..502bf51 100644 --- a/v2rayL-GUI/v2rayLui.py +++ b/v2rayL-GUI/v2rayLui.py @@ -174,7 +174,7 @@ def display_all_conf(self): lists = [] i = 1 for k, v in all_conf.items(): - lists.append((i, k, v["add"]+":"+v["port"], v["prot"], + lists.append((i, k, str(v["add"])+":"+str(v["port"]), v["prot"], True if k == self.v2rayL.current else False, self.start_conn_th, self.del_conf, self.show_share_dialog)) i += 1