Skip to content

Commit

Permalink
Fixed incorrect Boolean, now aligns with the description of “deactiva…
Browse files Browse the repository at this point in the history
…ted by default”.

Resolves #108 by @dontcrash

Signed-off-by: simonmicro <[email protected]>
  • Loading branch information
simonmicro committed May 19, 2024
1 parent e8ad973 commit da7feff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-kms/pykms_Server.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def run(self):
'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():
Expand Down

0 comments on commit da7feff

Please sign in to comment.