File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -206,14 +206,12 @@ def run(self):
206
206
# Abort if any of the required packages can not be built.
207
207
if required_failed :
208
208
print_line ()
209
- message = ("The following required packages can not "
210
- "be built: %s" %
211
- ", " .join (x .name for x in required_failed ))
209
+ print_message ("The following required packages can not be built: "
210
+ "%s" % ", " .join (x .name for x in required_failed ))
212
211
for pkg in required_failed :
213
- pkg_help = pkg .install_help_msg ()
214
- if pkg_help :
215
- message += "\n * " + pkg_help
216
- print_message (message )
212
+ msg = pkg .install_get_help ()
213
+ if msg :
214
+ print_message (msg )
217
215
sys .exit (1 )
218
216
219
217
# Now collect all of the information we need to build all of the
You can’t perform that action at this time.
0 commit comments