diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-05-19 12:28:12 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 08:24:01 +0100 |
commit | fa4275bbc0098124f3b44e0eafae83692db778b9 (patch) | |
tree | 3285957da8be3052b7cc77bed4765e99436674c8 /scripts/contrib/python/generate-manifest-3.5.py | |
parent | 3ee70cb7259aad3b53e51884ec5b9122e804d77e (diff) | |
download | poky-fa4275bbc0098124f3b44e0eafae83692db778b9.tar.gz |
scripts: Rename ConfigParser -> configparser for python3
The ConfigParser API was renamed to configparser in python 3.
Renamed ConfigParser -> configparser in scripts/ to make the
code working in python 3.
(From OE-Core rev: de6e98f272e623ce72e724e66920eecf10cb2d41)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/contrib/python/generate-manifest-3.5.py')
-rwxr-xr-x | scripts/contrib/python/generate-manifest-3.5.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/contrib/python/generate-manifest-3.5.py b/scripts/contrib/python/generate-manifest-3.5.py index 41f209b17f..e04da1de71 100755 --- a/scripts/contrib/python/generate-manifest-3.5.py +++ b/scripts/contrib/python/generate-manifest-3.5.py | |||
@@ -167,7 +167,7 @@ if __name__ == "__main__": | |||
167 | # | 167 | # |
168 | 168 | ||
169 | m.addPackage( "${PN}-core", "Python interpreter and core modules", "${PN}-lang ${PN}-re ${PN}-reprlib ${PN}-codecs ${PN}-io ${PN}-math", | 169 | m.addPackage( "${PN}-core", "Python interpreter and core modules", "${PN}-lang ${PN}-re ${PN}-reprlib ${PN}-codecs ${PN}-io ${PN}-math", |
170 | "__future__.* _abcoll.* abc.* ast.* copy.* copyreg.* ConfigParser.* " + | 170 | "__future__.* _abcoll.* abc.* ast.* copy.* copyreg.* configparser.* " + |
171 | "genericpath.* getopt.* linecache.* new.* " + | 171 | "genericpath.* getopt.* linecache.* new.* " + |
172 | "os.* posixpath.* struct.* " + | 172 | "os.* posixpath.* struct.* " + |
173 | "warnings.* site.* stat.* " + | 173 | "warnings.* site.* stat.* " + |