aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru Vasiu <alexandru.vasiu@ni.com>2018-11-07 16:30:13 +0200
committerArmin Kuster <akuster808@gmail.com>2018-11-15 13:18:51 -0800
commit3cc078485b63f30cea794e31db528d45e6210875 (patch)
tree7960b91f63ba1e1fca370ebc3b8ff5a05a2a8d75
parentc806bcacc7e0c948896c1f6f055be53958b88987 (diff)
downloadmeta-python2-3cc078485b63f30cea794e31db528d45e6210875.tar.gz
python-configparser.inc: Fix SUMMARYstable/thud-nmutstable/thud-next
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 <alexandru.vasiu@ni.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Tim Orling <ticotimo@gmail.com>
-rw-r--r--recipes-devtools/python/python-configparser.inc2
1 files changed, 1 insertions, 1 deletions
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"