Skip to content

Commit

Permalink
Issue #5423 - Fix missing 'not' in description
Browse files Browse the repository at this point in the history
Bug Description:

The helptext for 'start' is missing the word 'not'

Fix Description:

Adds in missing word

relates: #5423

Author: Andrew Elwell

Reviewed by: mreynolds
  • Loading branch information
Elwell authored and mreynolds389 committed Aug 22, 2022
1 parent e7d5f6b commit 1d8036a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib389/lib389/instance/options.py
Expand Up @@ -138,7 +138,7 @@ def __init__(self, log):

self._options['start'] = True
self._type['start'] = bool
self._helptext['start'] = "Starts the instance after the install completes. If false, the instance is created but started."
self._helptext['start'] = "Starts the instance after the install completes. If false, the instance is created but not started."

self._options['defaults'] = INSTALL_LATEST_CONFIG
self._type['defaults'] = str
Expand Down

0 comments on commit 1d8036a

Please sign in to comment.