@@ -165,18 +165,18 @@ def is_min_version(found, minversion):
165
165
# Define the display functions only if display_status is True.
166
166
if options ['display_status' ]:
167
167
def print_line (char = '=' ):
168
- print (char * 76 )
168
+ print (char * 79 )
169
169
170
170
def print_status (package , status ):
171
- initial_indent = "%22s : " % package
171
+ initial_indent = "%18s : " % package
172
172
indent = ' ' * 24
173
- print (textwrap .fill (str (status ), width = 76 ,
173
+ print (textwrap .fill (str (status ), width = 79 ,
174
174
initial_indent = initial_indent ,
175
175
subsequent_indent = indent ))
176
176
177
177
def print_message (message ):
178
178
indent = ' ' * 24 + "* "
179
- print (textwrap .fill (str (message ), width = 76 ,
179
+ print (textwrap .fill (str (message ), width = 79 ,
180
180
initial_indent = indent ,
181
181
subsequent_indent = indent ))
182
182
@@ -1231,7 +1231,7 @@ class BackendTkAgg(OptionalBackendPackage):
1231
1231
force = True
1232
1232
1233
1233
def check (self ):
1234
- return "installing; run-time loading from Python Tcl / Tk"
1234
+ return "installing; run-time loading from Python Tcl/ Tk"
1235
1235
1236
1236
def get_extension (self ):
1237
1237
sources = [
@@ -1246,7 +1246,7 @@ def get_extension(self):
1246
1246
def add_flags (self , ext ):
1247
1247
ext .include_dirs .insert (0 , 'src' )
1248
1248
if sys .platform == 'win32' :
1249
- # PSAPI library needed for finding Tcl / Tk at run time
1249
+ # PSAPI library needed for finding Tcl/ Tk at run time
1250
1250
ext .libraries .extend (['psapi' ])
1251
1251
elif sys .platform == 'linux' :
1252
1252
ext .libraries .extend (['dl' ])
0 commit comments