diff options
author | Stéphane Wirtel <stephane@wirtel.be> | 2017-06-13 01:31:11 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2017-06-13 01:31:11 (GMT) |
commit | 81f67b6f48820beed6e138077fd785020bbfd5d6 (patch) | |
tree | db39e0928e94878f5e9d87274f7f94fd1acb24ff | |
parent | a77a35d70ba8aed047e63d4d9f7d0554e98d4c4b (diff) | |
download | cpython-81f67b6f48820beed6e138077fd785020bbfd5d6.zip cpython-81f67b6f48820beed6e138077fd785020bbfd5d6.tar.gz cpython-81f67b6f48820beed6e138077fd785020bbfd5d6.tar.bz2 |
bpo-30636: Fix the indentation for the help (#2131)
-rw-r--r-- | Modules/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/main.c b/Modules/main.c index 6a7e1d3..94400fe 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -108,7 +108,7 @@ static const char usage_6[] = " hooks.\n"; static const char usage_7[] = "PYTHONCOERCECLOCALE: if this variable is set to 0, it disables the locale\n" -"coercion behavior\n"; +" coercion behavior\n"; static int usage(int exitcode, const wchar_t* program) |