From patchwork Sat Jun 17 10:03:50 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 777300 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3wqXrp2nm9z9s76 for ; Sat, 17 Jun 2017 20:04:09 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 7B1252FCBD; Sat, 17 Jun 2017 10:04:07 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2MjPQPZoS5Oi; Sat, 17 Jun 2017 10:04:06 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id E51A92FCB6; Sat, 17 Jun 2017 10:04:05 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id AB8ED1C14F8 for ; Sat, 17 Jun 2017 10:04:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id A6984869DC for ; Sat, 17 Jun 2017 10:04:04 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id mSy_-UQlIV2d for ; Sat, 17 Jun 2017 10:04:03 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout08.t-online.de (mailout08.t-online.de [194.25.134.20]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 73A21869AB for ; Sat, 17 Jun 2017 10:04:03 +0000 (UTC) Received: from fwd08.aul.t-online.de (fwd08.aul.t-online.de [172.20.26.151]) by mailout08.t-online.de (Postfix) with SMTP id E5D0741CB45C; Sat, 17 Jun 2017 12:04:00 +0200 (CEST) Received: from fli4l.lan.fli4l (VTnEckZGZhoz4RDc6NfNNy5DXUu01RShm8za4Vf57kvq9P9LK8HEOXbscv+5JFGQIt@[79.228.17.35]) by fwd08.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1dMAa8-14ei1o0; Sat, 17 Jun 2017 12:03:52 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:40694 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.89) (envelope-from ) id 1dMAa7-0003lM-Au; Sat, 17 Jun 2017 12:03:51 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sat, 17 Jun 2017 12:03:50 +0200 Message-Id: <20170617100350.4775-1-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.11.0 X-ID: VTnEckZGZhoz4RDc6NfNNy5DXUu01RShm8za4Vf57kvq9P9LK8HEOXbscv+5JFGQIt X-TOI-MSGID: 422202e1-5ae2-4416-810f-8cf13a3a9879 Subject: [Buildroot] [PATCH 1/1] scanpypi: fix comment typo X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Signed-off-by: Bernd Kuhls --- support/scripts/scanpypi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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...