From patchwork Fri Aug 30 12:52:58 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Klug X-Patchwork-Id: 21080 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 45CD2C32C2 for ; Fri, 30 Aug 2024 12:53:25 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id C36A9634A6; Fri, 30 Aug 2024 14:53:24 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="WzongnjJ"; dkim-atps=neutral Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id A8C116341E for ; Fri, 30 Aug 2024 14:53:22 +0200 (CEST) Received: from ideasonboard.com (unknown [IPv6:2a00:6020:448c:6c00:cdac:b850:c793:ea45]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 1A867227; Fri, 30 Aug 2024 14:52:13 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1725022333; bh=pcQZTivq0JBKn9uoUS3oM5Kz0vJmUBmw3oxGp7TlPi0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=WzongnjJixxOhZNB2b3hbwOMpqzJv+DorqOxMBIzKUxYiDgZkPrd0st9gM8PrUCQA tMG+HnrL9w2Pekq5E8kL5TEKUHRp9fdP69EB3KE7Ig+T0d1WcJ8VixVj/OqGuqMDV0 eHCowdhYYUrIKZBBB1oBNOatw8PMpv0CvlJZckE0= From: Stefan Klug To: libcamera-devel@lists.libcamera.org Cc: Stefan Klug Subject: [PATCH 1/3] utils: checkstyle: Remove leading colon from pycodestyle messages Date: Fri, 30 Aug 2024 14:52:58 +0200 Message-ID: <20240830125311.1702053-2-stefan.klug@ideasonboard.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240830125311.1702053-1-stefan.klug@ideasonboard.com> References: <20240830125311.1702053-1-stefan.klug@ideasonboard.com> MIME-Version: 1.0 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" The pycodestyle messages contain a leading ': ' which is not nice to look at. Ignore it. Signed-off-by: Stefan Klug Reviewed-by: Laurent Pinchart --- utils/checkstyle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/checkstyle.py b/utils/checkstyle.py index c9e41d4149f7..c6016f60a446 100755 --- a/utils/checkstyle.py +++ b/utils/checkstyle.py @@ -711,7 +711,7 @@ class MesonChecker(StyleChecker): class Pep8Checker(StyleChecker): patterns = ('*.py',) - results_regex = re.compile(r'stdin:([0-9]+):([0-9]+)(.*)') + results_regex = re.compile(r'stdin:([0-9]+):([0-9]+): (.*)') def __init__(self, content): super().__init__()