From 3bc45368c64a6f23f6deb29e54a164469f489cd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Hug=C3=A9?= Date: Thu, 3 Jun 2021 15:10:56 +0200 Subject: [PATCH] Make country tunnel parameter naming consistent --- re6st/tunnel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/re6st/tunnel.py b/re6st/tunnel.py index 9fdc999..5c19459 100644 --- a/re6st/tunnel.py +++ b/re6st/tunnel.py @@ -687,10 +687,10 @@ class TunnelManager(BaseTunnelManager): 'client_count', 'max_clients', 'same_country', 'tunnel_refresh')) def __init__(self, control_socket, cache, cert, openvpn_args, - timeout, client_count, iface_list, country, address, ip_changed, + timeout, client_count, iface_list, conf_country, address, ip_changed, remote_gateway, disable_proto, neighbour_list=()): super(TunnelManager, self).__init__(control_socket, - cache, cert, country, address) + cache, cert, conf_country, address) self.ovpn_args = openvpn_args self.timeout = timeout self._read_sock, self.write_sock = socket.socketpair( -- 2.25.1