Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add whitespace to multi-line helper text #94

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions doxypypy/doxypypy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1029,22 +1029,22 @@ def argParse():
parser.add_argument(
"-O", "--object-respect",
action="store_true", dest="object_respect",
help="By default, doxypypy hides object class from class dependencies"
"even if class inherits explictilty from objects (new-style class),"
help="By default, doxypypy hides object class from class dependencies "
"even if class inherits explictilty from objects (new-style class), "
"this option disable this."
)
parser.add_argument(
"-e", "--equalIndent",
action="store_true", dest="equalIndent",
help="Make indention level of docstrings matching with their enclosing"
help="Make indention level of docstrings matching with their enclosing "
"definitions one."
)
parser.add_argument(
"-k", "--keepDecorators",
action="store_true", dest="keepDecorators",
help="Decorators are usually ignored by doxypypy and thus are before the"
"doxygen docString output and not before it's definition string."
"With this option decorators are kept before it's definition string"
help="Decorators are usually ignored by doxypypy and thus are before the "
"doxygen docString output and not before it's definition string. "
"With this option decorators are kept before it's definition string "
"(function or class names). But this requires dogygen 1.9 or higher."
)
group = parser.add_argument_group("Debug Options")
Expand Down