From 3cc078485b63f30cea794e31db528d45e6210875 Mon Sep 17 00:00:00 2001 From: Alexandru Vasiu Date: Wed, 7 Nov 2018 16:30:13 +0200 Subject: python-configparser.inc: Fix SUMMARY MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SUMMARY contained a non-ascii char (’ instead of ') which caused pkg.info_installed to fail. (From meta-openembedded commit: 637f29fea5836c767d0c2c6124116881167337f7) Signed-off-by: Alexandru Vasiu Signed-off-by: Khem Raj Signed-off-by: Armin Kuster Signed-off-by: Tim Orling --- recipes-devtools/python/python-configparser.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-devtools/python/python-configparser.inc b/recipes-devtools/python/python-configparser.inc index c1fb858..133dbba 100644 --- a/recipes-devtools/python/python-configparser.inc +++ b/recipes-devtools/python/python-configparser.inc @@ -1,4 +1,4 @@ -SUMMARY = "This module provides the ConfigParser class which implements a basic configuration language which provides a structure similar to what’s found in Microsoft Windows INI files." +SUMMARY = "This module provides the ConfigParser class which implements a basic configuration language which provides a structure similar to what's found in Microsoft Windows INI files." SECTION = "devel/python" HOMEPAGE = "https://docs.python.org/3/library/configparser.html" LICENSE = "MIT" -- cgit 1.2.3-korg