From 4e9e7a61404ea168ffa30f5ef5203d3e0cb3d172 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Mon, 26 Jan 2004 16:42:30 +0000 Subject: don't wrap lines too late by default closes SF bug #842213 --- Lib/optparse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/optparse.py') diff --git a/Lib/optparse.py b/Lib/optparse.py index f8e3394c98..b89a6ce7df 100644 --- a/Lib/optparse.py +++ b/Lib/optparse.py @@ -247,7 +247,7 @@ class IndentedHelpFormatter (HelpFormatter): def __init__ (self, indent_increment=2, max_help_position=24, - width=80, + width=79, short_first=1): HelpFormatter.__init__( self, indent_increment, max_help_position, width, short_first) @@ -266,7 +266,7 @@ class TitledHelpFormatter (HelpFormatter): def __init__ (self, indent_increment=0, max_help_position=24, - width=80, + width=79, short_first=0): HelpFormatter.__init__ ( self, indent_increment, max_help_position, width, short_first) -- cgit v1.2.1