diff options
author | Alexandru Vasiu <alexandru.vasiu@ni.com> | 2018-11-07 16:30:13 +0200 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2018-11-15 13:18:51 -0800 |
commit | 3cc078485b63f30cea794e31db528d45e6210875 (patch) | |
tree | 7960b91f63ba1e1fca370ebc3b8ff5a05a2a8d75 | |
parent | c806bcacc7e0c948896c1f6f055be53958b88987 (diff) | |
download | meta-python2-stable/thud-nmut.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.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-devtools/python/python-configparser.inc b/recipes-devtools/python/python-configparser.inc index c1fb8582..133dbba7 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" |