scanpypi: fix comment typo

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Bernd Kuhls 2017-06-17 12:03:50 +02:00 committed by Peter Korsgaard
parent 3c2708cbcb
commit 9eebeb4482
1 changed files with 1 additions and 1 deletions

View File

@ -258,7 +258,7 @@ class BuildrootPackage():
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 sepcific case: if a package calls
# 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
# function of a previous package...