Thanks to visit codestin.com Credit goes to github.com
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 c63fd62 commit e12071aCopy full SHA for e12071a
1 file changed
setup.py
@@ -206,14 +206,12 @@ def run(self):
206
# Abort if any of the required packages can not be built.
207
if required_failed:
208
print_line()
209
- message = ("The following required packages can not "
210
- "be built: %s" %
211
- ", ".join(x.name for x in required_failed))
+ print_message("The following required packages can not be built: "
+ "%s" % ", ".join(x.name for x in required_failed))
212
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)
+ msg = pkg.install_get_help()
+ if msg:
+ print_message(msg)
217
sys.exit(1)
218
219
# Now collect all of the information we need to build all of the
0 commit comments