diff options
author | Alexey Roslyakov <alexey.roslyakov@gmail.com> | 2017-07-20 12:26:37 +0700 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-20 22:27:58 +0200 |
commit | c2877a2a8b9ac4ddf4359b5ee7266acd78a87c1d (patch) | |
tree | f00e304f589dd280c12f5c2851b2923bf60bef6a | |
parent | 6d64451b6368f9bdac110c7bebbdf20e74e1212b (diff) | |
download | buildroot-c2877a2a8b9ac4ddf4359b5ee7266acd78a87c1d.tar.gz buildroot-c2877a2a8b9ac4ddf4359b5ee7266acd78a87c1d.zip |
utils/scanpypi: don't pass any arguments to main()
'if __name__ == "__main__"' idiom typically calls main function that
doesn't take any arguments in most cases. We shouldn't pass any tuple to
it.
I've tested the script with python-idna-2.5 and now it works with this
little change.
Signed-off-by: Alexey Roslyakov <alexey.roslyakov@gmail.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rwxr-xr-x | utils/scanpypi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/scanpypi b/utils/scanpypi index bb3899241b..9abf3c4139 100755 --- a/utils/scanpypi +++ b/utils/scanpypi @@ -255,12 +255,12 @@ class BuildrootPackage(): # called through the if __name__ == '__main__' directive. # In this case, we can only pray that it is called through a # function called main() in setup.py. - setup.main([]) # Will raise AttributeError if not found + setup.main() # Will raise AttributeError if not found self.setup_metadata = self.setup_args[self.metadata_name] # Here we must remove the module the hard way. # We must do this because of a very specific case: if a package calls # setup from the __main__ but does not come with a 'main()' function, - # for some reason setup.main([]) will successfully call the main + # for some reason setup.main() will successfully call the main # function of a previous package... sys.modules.pop('setup',None) del setup |