diff mbox

[1/1] scanpypi: fix comment typo

Message ID 20170617100350.4775-1-bernd.kuhls@t-online.de
State Accepted
Commit 9eebeb4482567adde5ae21b9d59874ac42fc214d
Headers show

Commit Message

Bernd Kuhls June 17, 2017, 10:03 a.m. UTC
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 support/scripts/scanpypi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Peter Korsgaard June 17, 2017, 11:15 a.m. UTC | #1
>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:

 > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Committed, thanks.
diff mbox

Patch

diff --git a/support/scripts/scanpypi b/support/scripts/scanpypi
index 44e5d20513..bb3899241b 100755
--- a/support/scripts/scanpypi
+++ b/support/scripts/scanpypi
@@ -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...