diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-05-18 21:39:44 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 08:10:03 +0100 |
commit | 25d4d8274bac696a484f83d7f3ada778cf95f4d0 (patch) | |
tree | 626c84b436b57344bbb512870f4d2acd9f5b1195 /scripts/pythondeps | |
parent | 210e290c9251839dc74e3aabdcea3655dd707a50 (diff) | |
download | openembedded-core-contrib-25d4d8274bac696a484f83d7f3ada778cf95f4d0.tar.gz |
scripts: Fix deprecated dict methods for python3
Replaced iteritems -> items, itervalues -> values,
iterkeys -> keys or 'in'
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Diffstat (limited to 'scripts/pythondeps')
-rwxr-xr-x | scripts/pythondeps | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pythondeps b/scripts/pythondeps index ff92e747ed5..f1e64520920 100755 --- a/scripts/pythondeps +++ b/scripts/pythondeps @@ -187,7 +187,7 @@ def get_depends_recursive(directory): directory = os.path.realpath(directory) provides = dict((v, k) for k, v in get_provides(directory)) - for filename, provide in provides.iteritems(): + for filename, provide in provides.items(): if os.path.isdir(filename): filename = os.path.join(filename, '__init__.py') ispkg = True |