Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit de99a76

Browse files
committed
BF: fix goofy double "installing" message
Returning 'installing' from Windows check_requirements results in the message '[installing, installing]', because the `check` method default return string is also 'installing'.
1 parent 0c2c5a0 commit de99a76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setupext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1883,7 +1883,7 @@ def check_requirements(self):
18831883
config = self.get_config()
18841884
if config is False:
18851885
raise CheckFailed("skipping due to configuration")
1886-
return "installing"
1886+
return ""
18871887

18881888
def get_extension(self):
18891889
sources = [

0 commit comments

Comments
 (0)