From c2cc9d8bb2ef1ea3abc7e2b5c0bf1f37159199c7 Mon Sep 17 00:00:00 2001 From: Nick <32660358+dontcrash@users.noreply.github.com> Date: Tue, 30 Apr 2024 00:47:32 +0930 Subject: [PATCH] Update pykms_Server.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed incorrect Boolean, now aligns with the description of “deactivated by default”. --- py-kms/pykms_Server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-kms/pykms_Server.py b/py-kms/pykms_Server.py index cbe96a8..71893f0 100755 --- a/py-kms/pykms_Server.py +++ b/py-kms/pykms_Server.py @@ -212,7 +212,7 @@ Use \"STDOUTOFF\" to disable stdout messages. Use \"FILEOFF\" if you not want to 'reuse' : {'help' : 'Do not allows binding / listening to the same address and port. Reusing port is activated by default.', 'def' : True, 'des': "reuse"}, 'dual' : {'help' : 'Allows listening to an IPv6 address also accepting connections via IPv4. Deactivated by default.', - 'def' : True, 'des': "dual"} + 'def' : False, 'des': "dual"} } def server_options():