From patchwork Sun Oct 25 16:04:27 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jacopo Mondi X-Patchwork-Id: 10242 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 19FDDBDB13 for ; Sun, 25 Oct 2020 16:04:52 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id ADA9F61EB1; Sun, 25 Oct 2020 17:04:51 +0100 (CET) Received: from relay10.mail.gandi.net (relay10.mail.gandi.net [217.70.178.230]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 73E0461EAA for ; Sun, 25 Oct 2020 17:04:48 +0100 (CET) Received: from uno.lan (2-224-242-101.ip172.fastwebnet.it [2.224.242.101]) (Authenticated sender: jacopo@jmondi.org) by relay10.mail.gandi.net (Postfix) with ESMTPSA id DF62F240003; Sun, 25 Oct 2020 16:04:47 +0000 (UTC) From: Jacopo Mondi To: libcamera-devel@lists.libcamera.org Date: Sun, 25 Oct 2020 17:04:27 +0100 Message-Id: <20201025160434.25664-8-jacopo@jmondi.org> X-Mailer: git-send-email 2.28.0 In-Reply-To: <20201025160434.25664-1-jacopo@jmondi.org> References: <20201025160434.25664-1-jacopo@jmondi.org> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v5 07/14] libcamera: controls: Fix rogue whitespace 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" Remove an extra whitespace in the declaration of a vocabulary entry in gen-controls.py script. Signed-off-by: Jacopo Mondi Reviewed-by: Laurent Pinchart --- utils/gen-controls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/gen-controls.py b/utils/gen-controls.py index 8bdaf4bdf078..12a32eaaeee9 100755 --- a/utils/gen-controls.py +++ b/utils/gen-controls.py @@ -77,7 +77,7 @@ ${description} num_entries = 0 for entry in enum: value_info = { - 'name' : name, + 'name': name, 'value': entry['name'], 'description': format_description(entry['description']), }