From patchwork Wed Dec 23 14:10:52 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Peter_M=C3=BCller?= X-Patchwork-Id: 3748 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4D1FVT5CJzz3wgG for ; Wed, 23 Dec 2020 14:10:57 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4D1FVT3HbMz1gL; Wed, 23 Dec 2020 14:10:57 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4D1FVS37sfz2x9Y; Wed, 23 Dec 2020 14:10:56 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature RSA-PSS (4096 bits)) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4D1FVR0Y4tz2xWS for ; Wed, 23 Dec 2020 14:10:55 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384)) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4D1FVQ12RSz1K6 for ; Wed, 23 Dec 2020 14:10:53 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1608732654; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=sctxSI6Gg9W8vCG/GiUnIKpcmtbvmKW3Epc1IqXsbXk=; b=zlxIFWx9vFxAJ8pTzbYz2w5/4nQmqqKvxLYE7ZAPaXSQorwBbupmfexydSlgrl4vxMdRli cK7J/j4Em75HK0DQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1608732654; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=sctxSI6Gg9W8vCG/GiUnIKpcmtbvmKW3Epc1IqXsbXk=; b=E9tmAUBlRBPQtrhj4tOnlngPbTWTo0aNWD+bmA1kc95lxALSL9+zt+1zhhBdfDkUM5Chi/ D3Vfc4AF+RdZWKQQ22favir2MXbrV0UbPFTcyuHULOsE2D2KVrJ4SMFrDQiehA5OihcxS6 Q9CvDzbm27W/+EOAtNn6aayETGe+Y7Hniped9xNqbn5cI77VdhdmKUX2DKLNmxbdeCGCVI kwfWK9wH+VGchw8E561ymkGFgg2YF+wUIEA0Ge4p3WPOqtFaonFAm3qnkFW60/PpVcep1g B3UH7eSCr7x0E5jLid/UpI1bALOjgyQlzHYZyj8NBCI718piAv3kMcBRgaZqgA== To: location@lists.ipfire.org From: =?utf-8?q?Peter_M=C3=BCller?= Subject: [PATCH] location-importer.in: fix typo Message-ID: Date: Wed, 23 Dec 2020 15:10:52 +0100 MIME-Version: 1.0 Content-Language: en-US X-BeenThere: location@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: location-bounces@lists.ipfire.org Sender: "Location" Fixes: #12549 Signed-off-by: Peter Müller --- src/python/location-importer.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/location-importer.in b/src/python/location-importer.in index 2dec89e..a4be445 100644 --- a/src/python/location-importer.in +++ b/src/python/location-importer.in @@ -990,7 +990,7 @@ class CLI(object): ) else: - log.warning("Unsupport type: %s" % type) + log.warning("Unsupported type: %s" % type) @staticmethod def _parse_bool(block, key):