We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9819bd commit fcfcb56Copy full SHA for fcfcb56
nancy/__init__.py
@@ -716,7 +716,8 @@ async def real_main(argv: list[str] = sys.argv[1:]) -> None:
716
# Read and process arguments
717
parser = argparse.ArgumentParser(
718
description="A simple templating system.",
719
- epilog=f"The INPUT-PATH is a '{os.path.pathsep}'-separated list; the inputs are merged "
+ formatter_class=argparse.RawDescriptionHelpFormatter,
720
+ epilog=f"The INPUT-PATH is a '{os.path.pathsep}'-separated list; the inputs are merged\n"
721
+ "in left-to-right order.",
722
)
723
parser.add_argument(
0 commit comments