Update pykms_Server.py

Fixed incorrect Boolean, now aligns with the description of “deactivated by default”.
This commit is contained in:
Nick 2024-04-30 00:47:32 +09:30 committed by GitHub
parent 35fbc766ca
commit c2cc9d8bb2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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():